Linux Basics

Biostat 203B

Author

Dr. Hua Zhou @ UCLA

Published

December 28, 2024

Display machine information for reproducibility:

sessionInfo()
R version 4.4.2 (2024-10-31)
Platform: aarch64-apple-darwin20
Running under: macOS Sequoia 15.2

Matrix products: default
BLAS:   /Library/Frameworks/R.framework/Versions/4.4-arm64/Resources/lib/libRblas.0.dylib 
LAPACK: /Library/Frameworks/R.framework/Versions/4.4-arm64/Resources/lib/libRlapack.dylib;  LAPACK version 3.12.0

locale:
[1] en_US.UTF-8/en_US.UTF-8/en_US.UTF-8/C/en_US.UTF-8/en_US.UTF-8

time zone: America/Los_Angeles
tzcode source: internal

attached base packages:
[1] stats     graphics  grDevices utils     datasets  methods   base     

loaded via a namespace (and not attached):
 [1] htmlwidgets_1.6.4 compiler_4.4.2    fastmap_1.2.0     cli_3.6.3        
 [5] tools_4.4.2       htmltools_0.5.8.1 rstudioapi_0.16.0 yaml_2.3.10      
 [9] rmarkdown_2.28    knitr_1.48        jsonlite_1.8.8    xfun_0.47        
[13] digest_0.6.36     rlang_1.1.4       evaluate_0.24.0  

1 Preface

  • This html is rendered from linux.qmd on Linux Ubuntu 22.04 (jammy).
    • Mac users can render linux.qmd directly. Some tools such as tree and locate need to be installed (follow the error messages).

    • Windows users need to install Git for Windows to render linux.qmd using Git Bash or install WSL (Windows Subsystem for Linux) to render linux.qmd using Ubuntu. Some tools such as tree and locate need to be installed (follow the error messages).

    • Both Mac and Windows users can also use Docker to render linux.qmd within a Ubuntu container. Details in Lab 3.

Set Bash engine in Windows

Windows Git Bash users need to set bash engine to Git Bash:

# only on Windows Git Bash
knitr::opts_chunk$set(engine.path = list(
  bash = "C:\\Program\ Files\\Git\\bin\\bash.exe"
))

or similarly to WSL.

  • In this lecture, most code chunks are bash commands instead of R code.

2 Why Linux

Linux is the most common platform for scientific computing and deployment of data science tools.

  • Open source and community support.

  • Things break; when they break using Linux, it’s easy to fix.

  • Scalability: portable devices (Android, iOS), laptops, servers, clusters, and super-computers.

    • E.g. UCLA Hoffmann2 cluster runs on Linux; most machines in cloud (AWS, Azure, GCP) run on Linux.
  • Cost: it’s free!

3 Distributions of Linux

  • Debian/Ubuntu is a popular choice for personal computers.

  • RHEL/CentOS is popular on servers. (In December 2020, Red Hat terminated the development of CentOS Linux distribution.)

  • UCLA Hoffman2 cluster runs CentOS 7.9.2009 (as of 2024-01-01).

  • MacOS was originally derived from Unix/Linux (Darwin kernel). It is POSIX compliant. Most shell commands we review here apply to MacOS terminal as well.

    Windows/DOS, unfortunately, is a totally different breed.

  • Show operating system (OS) type:

echo $OSTYPE
darwin24
  • Show distribution/version on Linux:
# only on Linux terminal
cat /etc/*-release
  • Show distribution/version on MacOS:
# only on Mac terminal
sw_vers -productVersion
15.2

or

# only on Mac terminal
system_profiler SPSoftwareDataType
Software:

    System Software Overview:

      System Version: macOS 15.2 (24C101)
      Kernel Version: Darwin 24.2.0
      Boot Volume: Macintosh HD
      Boot Mode: Normal
      Computer Name: FSPH-HZHOU
      User Name: Hua Zhou (huazhou)
      Secure Virtual Memory: Enabled
      System Integrity Protection: Enabled
      Time since boot: 7 days, 8 hours, 7 minutes

4 Linux shells

4.1 Shells

  • A shell translates commands to OS instructions.

  • Most commonly used shells include bash, csh, tcsh, zsh, etc.

  • The default shell in MacOS changed from bash to zsh since MacOS v10.15 circa 2019.

  • Sometimes a command and a script does not run simply because it’s written for another shell.

  • We mostly use bash shell commands in this class.

  • Determine the current shell:

echo $SHELL
/bin/zsh
  • List available shells (on Linux or MacOS):
cat /etc/shells
# List of acceptable shells for chpass(1).
# Ftpd will not allow users to connect who are not using
# one of these shells.

/bin/bash
/bin/csh
/bin/dash
/bin/ksh
/bin/sh
/bin/tcsh
/bin/zsh
  • Change to another shell:
```{bash}
#| eval: false
exec bash -l
```

The -l option indicates it should be a login shell.

  • Change your login shell permanently:
chsh -s /bin/bash [USERNAME]

Then log out and log in.

4.2 Command history and bash completion

  • We can navigate to previous/next commands by the upper and lower keys, or maintain a command history stack using pushd and popd commands.

  • Bash provides the following standard completion for the Linux users by default. Much less typing errors and time!

    • Pathname completion.

    • Filename completion.

    • Variablename completion: echo $[TAB][TAB].

    • Username completion: cd ~[TAB][TAB].

    • Hostname completion ssh huazhou@[TAB][TAB].

    • It can also be customized to auto-complete other stuff such as options and command’s arguments. Google bash completion for more information.

4.3 man is man’s best friend

Online help for shell commands: man [COMMANDNAME].

# display the first 30 lines of documentation for the ls command
man ls | head -30
LS(1)                       General Commands Manual                      LS(1)

NNAAMMEE
     llss – list directory contents

SSYYNNOOPPSSIISS
     llss [--@@AABBCCFFGGHHIILLOOPPRRSSTTUUWWaabbccddeeffgghhiikkllmmnnooppqqrrssttuuvvwwxxyy11%%,,] [----ccoolloorr=_w_h_e_n]
        [--DD _f_o_r_m_a_t] [_f_i_l_e _._._.]

DDEESSCCRRIIPPTTIIOONN
     For each operand that names a _f_i_l_e of a type other than directory, llss
     displays its name as well as any requested, associated information.  For
     each operand that names a _f_i_l_e of type directory, llss displays the names
     of files contained within that directory, as well as any requested,
     associated information.

     If no operands are given, the contents of the current directory are
     displayed.  If more than one operand is given, non-directory operands are
     displayed first; directory and non-directory operands are sorted
     separately and in lexicographical order.

     The following options are available:

     --@@      Display extended attribute keys and sizes in long (--ll) output.

     --AA      Include directory entries whose names begin with a dot (‘_.’)
             except for _. and _._..  Automatically set for the super-user unless
             --II is specified.

     --BB      Force printing of non-printable characters (as defined by

6 Work with text files

6.1 View/peek text files

  • cat prints the contents of a file:
cat runSim.R
## parsing command arguments
for (arg in commandArgs(TRUE)) {
  eval(parse(text=arg))
}

## check if a given integer is prime
isPrime = function(n) {
  if (n <= 3) {
    return (TRUE)
  }
  if (any((n %% 2:floor(sqrt(n))) == 0)) {
    return (FALSE)
  }
  return (TRUE)
}

## estimate mean only using observation with prime indices
estMeanPrimes = function (x) {
  n = length(x)
  ind = sapply(1:n, isPrime)
  return (mean(x[ind]))
}

# simulate data
x = rnorm(n)

# estimate mean
estMeanPrimes(x)

Be cautious to cat large text files.

  • head prints the first 10 lines of a file:
head runSim.R
## parsing command arguments
for (arg in commandArgs(TRUE)) {
  eval(parse(text=arg))
}

## check if a given integer is prime
isPrime = function(n) {
  if (n <= 3) {
    return (TRUE)
  }

head -l prints the first \(l\) lines of a file:

head -15 runSim.R
## parsing command arguments
for (arg in commandArgs(TRUE)) {
  eval(parse(text=arg))
}

## check if a given integer is prime
isPrime = function(n) {
  if (n <= 3) {
    return (TRUE)
  }
  if (any((n %% 2:floor(sqrt(n))) == 0)) {
    return (FALSE)
  }
  return (TRUE)
}
  • tail prints the last 10 lines of a file:
tail runSim.R
  n = length(x)
  ind = sapply(1:n, isPrime)
  return (mean(x[ind]))
}

# simulate data
x = rnorm(n)

# estimate mean
estMeanPrimes(x)

tail -l prints the last \(l\) lines of a file:

tail -15 runSim.R
  return (TRUE)
}

## estimate mean only using observation with prime indices
estMeanPrimes = function (x) {
  n = length(x)
  ind = sapply(1:n, isPrime)
  return (mean(x[ind]))
}

# simulate data
x = rnorm(n)

# estimate mean
estMeanPrimes(x)

tail -n +NUM outputs starting with line NUM:

tail -n +20 runSim.R
  ind = sapply(1:n, isPrime)
  return (mean(x[ind]))
}

# simulate data
x = rnorm(n)

# estimate mean
estMeanPrimes(x)
  • Questions:
    • How to see the 11th line of the file and nothing else?
    • What about the 11th to the last line?

6.2 Piping and redirection

  • | sends output from one command as input of another command.
ls -l | head -5
total 13744
-rw-r--r--@ 1 huazhou  staff   110345 Mar 10  2023 Emacs_Reference_Card.pdf
-rw-r--r--@ 1 huazhou  staff   157353 Mar 10  2023 IDRE_Winter_2019_Workshops.pdf
-rw-r--r--@ 1 huazhou  staff   141962 Mar 10  2023 Richard_Stallman_2013.png
-rw-r--r--@ 1 huazhou  staff   199492 Mar 10  2023 Vi_Cheat_Sheet.pdf
  • > directs output from one command to a file.

  • >> appends output from one command to a file.

  • < reads input from a file.

  • Combinations of shell commands (grep, sed, awk, …), piping and redirection, and regular expressions allow us pre-process and reformat huge text files efficiently. See HW1.

6.3 less is more; more is less

  • more browses a text file screen by screen (only downwards). Scroll down one page (paging) by pressing the spacebar; exit by pressing the q key.

  • less is also a pager, but has more functionalities, e.g., scroll upwards and downwards through the input.

  • less doesn’t need to read the whole file, i.e., it loads files faster than more.

6.4 grep

grep prints lines that match an expression:

  • Show lines that contain string CentOS:
# quotes not necessary if not a regular expression
grep 'CentOS' linux.qmd
- RHEL/CentOS is popular on servers. (In December 2020, Red Hat terminated the development of CentOS Linux distribution.)
- UCLA Hoffman2 cluster runs CentOS 7.9.2009 (as of 2024-01-01).
- Show lines that contain string `CentOS`:
grep 'CentOS' linux.qmd
grep 'CentOS' *.qmd
grep -n 'CentOS' linux.qmd
- Replace `CentOS` by `RHEL` in a text file:
sed 's/CentOS/RHEL/' linux.qmd | grep RHEL
  • Search multiple text files:
grep 'CentOS' *.qmd
- RHEL/CentOS is popular on servers. (In December 2020, Red Hat terminated the development of CentOS Linux distribution.)
- UCLA Hoffman2 cluster runs CentOS 7.9.2009 (as of 2024-01-01).
- Show lines that contain string `CentOS`:
grep 'CentOS' linux.qmd
grep 'CentOS' *.qmd
grep -n 'CentOS' linux.qmd
- Replace `CentOS` by `RHEL` in a text file:
sed 's/CentOS/RHEL/' linux.qmd | grep RHEL
  • Show matching line numbers:
grep -n 'CentOS' linux.qmd
69:- RHEL/CentOS is popular on servers. (In December 2020, Red Hat terminated the development of CentOS Linux distribution.)
75:- UCLA Hoffman2 cluster runs CentOS 7.9.2009 (as of 2024-01-01).
382:- Show lines that contain string `CentOS`:
385:grep 'CentOS' linux.qmd
390:grep 'CentOS' *.qmd
395:grep -n 'CentOS' linux.qmd
412:- Replace `CentOS` by `RHEL` in a text file:
414:sed 's/CentOS/RHEL/' linux.qmd | grep RHEL
  • Find all files in current directory with .png extension:
ls | grep '.png$'
Richard_Stallman_2013.png
key_authentication_1.png
key_authentication_2.png
linux_directory_structure.png
linux_filepermission.png
linux_filepermission_oct.png
redhat_kills_centos.png
screenshot_top.png
  • Find all directories in the current directory:
ls -al | grep '^d'
drwxr-xr-x@ 19 huazhou  staff      608 Dec 28 17:33 .
drwxr-xr-x@ 22 huazhou  staff      704 Mar 13  2024 ..

6.5 sed

  • sed is a stream editor.

  • Replace CentOS by RHEL in a text file:

sed 's/CentOS/RHEL/' linux.qmd | grep RHEL
- RHEL/RHEL is popular on servers. (In December 2020, Red Hat terminated the development of CentOS Linux distribution.)
- UCLA Hoffman2 cluster runs RHEL 7.9.2009 (as of 2024-01-01).
- Show lines that contain string `RHEL`:
grep 'RHEL' linux.qmd
grep 'RHEL' *.qmd
grep -n 'RHEL' linux.qmd
- Replace `RHEL` by `RHEL` in a text file:
sed 's/RHEL/RHEL/' linux.qmd | grep RHEL

6.6 awk

  • awk is a filter and report writer.

  • First let’s display the content of the file /etc/passwd (this file only exists in Linux and MacOS):

cat /etc/passwd
##
# User Database
# 
# Note that this file is consulted directly only when the system is running
# in single-user mode.  At other times this information is provided by
# Open Directory.
#
# See the opendirectoryd(8) man page for additional information about
# Open Directory.
##
nobody:*:-2:-2:Unprivileged User:/var/empty:/usr/bin/false
root:*:0:0:System Administrator:/var/root:/bin/sh
daemon:*:1:1:System Services:/var/root:/usr/bin/false
_uucp:*:4:4:Unix to Unix Copy Protocol:/var/spool/uucp:/usr/sbin/uucico
_taskgated:*:13:13:Task Gate Daemon:/var/empty:/usr/bin/false
_networkd:*:24:24:Network Services:/var/networkd:/usr/bin/false
_installassistant:*:25:25:Install Assistant:/var/empty:/usr/bin/false
_lp:*:26:26:Printing Services:/var/spool/cups:/usr/bin/false
_postfix:*:27:27:Postfix Mail Server:/var/spool/postfix:/usr/bin/false
_scsd:*:31:31:Service Configuration Service:/var/empty:/usr/bin/false
_ces:*:32:32:Certificate Enrollment Service:/var/empty:/usr/bin/false
_appstore:*:33:33:Mac App Store Service:/var/db/appstore:/usr/bin/false
_mcxalr:*:54:54:MCX AppLaunch:/var/empty:/usr/bin/false
_appleevents:*:55:55:AppleEvents Daemon:/var/empty:/usr/bin/false
_geod:*:56:56:Geo Services Daemon:/var/db/geod:/usr/bin/false
_devdocs:*:59:59:Developer Documentation:/var/empty:/usr/bin/false
_sandbox:*:60:60:Seatbelt:/var/empty:/usr/bin/false
_mdnsresponder:*:65:65:mDNSResponder:/var/empty:/usr/bin/false
_ard:*:67:67:Apple Remote Desktop:/var/empty:/usr/bin/false
_www:*:70:70:World Wide Web Server:/Library/WebServer:/usr/bin/false
_eppc:*:71:71:Apple Events User:/var/empty:/usr/bin/false
_cvs:*:72:72:CVS Server:/var/empty:/usr/bin/false
_svn:*:73:73:SVN Server:/var/empty:/usr/bin/false
_mysql:*:74:74:MySQL Server:/var/empty:/usr/bin/false
_sshd:*:75:75:sshd Privilege separation:/var/empty:/usr/bin/false
_qtss:*:76:76:QuickTime Streaming Server:/var/empty:/usr/bin/false
_cyrus:*:77:6:Cyrus Administrator:/var/imap:/usr/bin/false
_mailman:*:78:78:Mailman List Server:/var/empty:/usr/bin/false
_appserver:*:79:79:Application Server:/var/empty:/usr/bin/false
_clamav:*:82:82:ClamAV Daemon:/var/virusmails:/usr/bin/false
_amavisd:*:83:83:AMaViS Daemon:/var/virusmails:/usr/bin/false
_jabber:*:84:84:Jabber XMPP Server:/var/empty:/usr/bin/false
_appowner:*:87:87:Application Owner:/var/empty:/usr/bin/false
_windowserver:*:88:88:WindowServer:/var/empty:/usr/bin/false
_spotlight:*:89:89:Spotlight:/var/empty:/usr/bin/false
_tokend:*:91:91:Token Daemon:/var/empty:/usr/bin/false
_securityagent:*:92:92:SecurityAgent:/var/db/securityagent:/usr/bin/false
_calendar:*:93:93:Calendar:/var/empty:/usr/bin/false
_teamsserver:*:94:94:TeamsServer:/var/teamsserver:/usr/bin/false
_update_sharing:*:95:-2:Update Sharing:/var/empty:/usr/bin/false
_installer:*:96:-2:Installer:/var/empty:/usr/bin/false
_atsserver:*:97:97:ATS Server:/var/empty:/usr/bin/false
_ftp:*:98:-2:FTP Daemon:/var/empty:/usr/bin/false
_unknown:*:99:99:Unknown User:/var/empty:/usr/bin/false
_softwareupdate:*:200:200:Software Update Service:/var/db/softwareupdate:/usr/bin/false
_coreaudiod:*:202:202:Core Audio Daemon:/var/empty:/usr/bin/false
_screensaver:*:203:203:Screensaver:/var/empty:/usr/bin/false
_locationd:*:205:205:Location Daemon:/var/db/locationd:/usr/bin/false
_trustevaluationagent:*:208:208:Trust Evaluation Agent:/var/empty:/usr/bin/false
_timezone:*:210:210:AutoTimeZoneDaemon:/var/empty:/usr/bin/false
_lda:*:211:211:Local Delivery Agent:/var/empty:/usr/bin/false
_cvmsroot:*:212:212:CVMS Root:/var/empty:/usr/bin/false
_usbmuxd:*:213:213:iPhone OS Device Helper:/var/db/lockdown:/usr/bin/false
_dovecot:*:214:6:Dovecot Administrator:/var/empty:/usr/bin/false
_dpaudio:*:215:215:DP Audio:/var/empty:/usr/bin/false
_postgres:*:216:216:PostgreSQL Server:/var/empty:/usr/bin/false
_krbtgt:*:217:-2:Kerberos Ticket Granting Ticket:/var/empty:/usr/bin/false
_kadmin_admin:*:218:-2:Kerberos Admin Service:/var/empty:/usr/bin/false
_kadmin_changepw:*:219:-2:Kerberos Change Password Service:/var/empty:/usr/bin/false
_devicemgr:*:220:220:Device Management Server:/var/empty:/usr/bin/false
_webauthserver:*:221:221:Web Auth Server:/var/empty:/usr/bin/false
_netbios:*:222:222:NetBIOS:/var/empty:/usr/bin/false
_warmd:*:224:224:Warm Daemon:/var/empty:/usr/bin/false
_dovenull:*:227:227:Dovecot Authentication:/var/empty:/usr/bin/false
_netstatistics:*:228:228:Network Statistics Daemon:/var/empty:/usr/bin/false
_avbdeviced:*:229:-2:Ethernet AVB Device Daemon:/var/empty:/usr/bin/false
_krb_krbtgt:*:230:-2:Open Directory Kerberos Ticket Granting Ticket:/var/empty:/usr/bin/false
_krb_kadmin:*:231:-2:Open Directory Kerberos Admin Service:/var/empty:/usr/bin/false
_krb_changepw:*:232:-2:Open Directory Kerberos Change Password Service:/var/empty:/usr/bin/false
_krb_kerberos:*:233:-2:Open Directory Kerberos:/var/empty:/usr/bin/false
_krb_anonymous:*:234:-2:Open Directory Kerberos Anonymous:/var/empty:/usr/bin/false
_assetcache:*:235:235:Asset Cache Service:/var/empty:/usr/bin/false
_coremediaiod:*:236:236:Core Media IO Daemon:/var/empty:/usr/bin/false
_launchservicesd:*:239:239:_launchservicesd:/var/empty:/usr/bin/false
_iconservices:*:240:240:IconServices:/var/empty:/usr/bin/false
_distnote:*:241:241:DistNote:/var/empty:/usr/bin/false
_nsurlsessiond:*:242:242:NSURLSession Daemon:/var/db/nsurlsessiond:/usr/bin/false
_displaypolicyd:*:244:244:Display Policy Daemon:/var/empty:/usr/bin/false
_astris:*:245:245:Astris Services:/var/db/astris:/usr/bin/false
_krbfast:*:246:-2:Kerberos FAST Account:/var/empty:/usr/bin/false
_gamecontrollerd:*:247:247:Game Controller Daemon:/var/empty:/usr/bin/false
_mbsetupuser:*:248:248:Setup User:/var/setup:/bin/bash
_ondemand:*:249:249:On Demand Resource Daemon:/var/db/ondemand:/usr/bin/false
_xserverdocs:*:251:251:macOS Server Documents Service:/var/empty:/usr/bin/false
_wwwproxy:*:252:252:WWW Proxy:/var/empty:/usr/bin/false
_mobileasset:*:253:253:MobileAsset User:/var/ma:/usr/bin/false
_findmydevice:*:254:254:Find My Device Daemon:/var/db/findmydevice:/usr/bin/false
_datadetectors:*:257:257:DataDetectors:/var/db/datadetectors:/usr/bin/false
_captiveagent:*:258:258:captiveagent:/var/empty:/usr/bin/false
_ctkd:*:259:259:ctkd Account:/var/empty:/usr/bin/false
_applepay:*:260:260:applepay Account:/var/db/applepay:/usr/bin/false
_hidd:*:261:261:HID Service User:/var/db/hidd:/usr/bin/false
_cmiodalassistants:*:262:262:CoreMedia IO Assistants User:/var/db/cmiodalassistants:/usr/bin/false
_analyticsd:*:263:263:Analytics Daemon:/var/db/analyticsd:/usr/bin/false
_fpsd:*:265:265:FPS Daemon:/var/db/fpsd:/usr/bin/false
_timed:*:266:266:Time Sync Daemon:/var/db/timed:/usr/bin/false
_nearbyd:*:268:268:Proximity and Ranging Daemon:/var/db/nearbyd:/usr/bin/false
_reportmemoryexception:*:269:269:ReportMemoryException:/var/db/reportmemoryexception:/usr/bin/false
_driverkit:*:270:270:DriverKit:/var/empty:/usr/bin/false
_diskimagesiod:*:271:271:DiskImages IO Daemon:/var/db/diskimagesiod:/usr/bin/false
_logd:*:272:272:Log Daemon:/var/db/diagnostics:/usr/bin/false
_appinstalld:*:273:273:App Install Daemon:/var/db/appinstalld:/usr/bin/false
_installcoordinationd:*:274:274:Install Coordination Daemon:/var/db/installcoordinationd:/usr/bin/false
_demod:*:275:275:Demo Daemon:/var/empty:/usr/bin/false
_rmd:*:277:277:Remote Management Daemon:/var/db/rmd:/usr/bin/false
_accessoryupdater:*:278:278:Accessory Update Daemon:/var/db/accessoryupdater:/usr/bin/false
_knowledgegraphd:*:279:279:Knowledge Graph Daemon:/var/db/knowledgegraphd:/usr/bin/false
_coreml:*:280:280:CoreML Services:/var/db/coreml:/usr/bin/false
_sntpd:*:281:281:SNTP Server Daemon:/var/empty:/usr/bin/false
_trustd:*:282:282:trustd:/var/empty:/usr/bin/false
_mmaintenanced:*:283:283:mmaintenanced:/var/db/mmaintenanced:/usr/bin/false
_darwindaemon:*:284:284:Darwin Daemon:/var/db/darwindaemon:/usr/bin/false
_notification_proxy:*:285:285:Notification Proxy:/var/empty:/usr/bin/false
_avphidbridge:*:288:288:Apple Virtual Platform HID Bridge:/var/empty:/usr/bin/false
_biome:*:289:289:Biome:/var/db/biome:/usr/bin/false
_backgroundassets:*:291:291:Background Assets Service:/var/empty:/usr/bin/false
_mobilegestalthelper:*:293:293:MobileGestaltHelper:/var/empty:/usr/bin/false
_audiomxd:*:294:294:Audio and MediaExperience Daemon:/var/db/audiomxd:/usr/bin/false
_terminusd:*:295:295:Terminus:/var/db/terminus:/usr/bin/false
_neuralengine:*:296:296:AppleNeuralEngine:/var/db/neuralengine:/usr/bin/false
_eligibilityd:*:297:297:OS Eligibility Daemon:/var/db/eligibilityd:/usr/bin/false
_systemstatusd:*:298:298:SystemStatus Services:/var/empty:/usr/bin/false
_aonsensed:*:300:300:Always On Sense Daemon:/var/db/aonsensed:/usr/bin/false
_modelmanagerd:*:301:301:Model Manager:/var/db/modelmanagerd:/usr/bin/false
_reportsystemmemory:*:302:302:ReportSystemMemory:/var/empty:/usr/bin/false
_swtransparencyd:*:303:303:Software Transparency Services:/var/db/swtransparencyd:/usr/bin/false
_naturallanguaged:*:304:304:Natural Language Services:/var/db/com.apple.naturallanguaged:/usr/bin/false
_oahd:*:441:441:OAH Daemon:/var/empty:/usr/bin/false

Each line contains fields (1) user name, (2) password, (3) user ID, (4) group ID, (5) user ID info, (6) home directory, and (7) command shell, separated by :.

  • Print sorted list of login names:
awk -F: '{ print $1 }' /etc/passwd | sort | head -10
#
# 
# Note that this file is consulted directly only when the system is running
# Open Directory.
# Open Directory.
# See the opendirectoryd(8) man page for additional information about
# User Database
# in single-user mode.  At other times this information is provided by
##
##
  • Print number of lines in a file, as NR stands for Number of Rows:
awk 'END { print NR }' /etc/passwd
138

or

wc -l /etc/passwd
     138 /etc/passwd

or (not displaying file name)

wc -l < /etc/passwd
     138
  • Print login names with UID in range 1000-1035:
awk -F: '{if ($3 >= 1000 && $3 <= 1047) print}' /etc/passwd
  • Print login names and log-in shells in comma-separated format:
awk -F: '{OFS = ","} {print $1, $7}' /etc/passwd
##,
# User Database,
# ,
# Note that this file is consulted directly only when the system is running,
# in single-user mode.  At other times this information is provided by,
# Open Directory.,
#,
# See the opendirectoryd(8) man page for additional information about,
# Open Directory.,
##,
nobody,/usr/bin/false
root,/bin/sh
daemon,/usr/bin/false
_uucp,/usr/sbin/uucico
_taskgated,/usr/bin/false
_networkd,/usr/bin/false
_installassistant,/usr/bin/false
_lp,/usr/bin/false
_postfix,/usr/bin/false
_scsd,/usr/bin/false
_ces,/usr/bin/false
_appstore,/usr/bin/false
_mcxalr,/usr/bin/false
_appleevents,/usr/bin/false
_geod,/usr/bin/false
_devdocs,/usr/bin/false
_sandbox,/usr/bin/false
_mdnsresponder,/usr/bin/false
_ard,/usr/bin/false
_www,/usr/bin/false
_eppc,/usr/bin/false
_cvs,/usr/bin/false
_svn,/usr/bin/false
_mysql,/usr/bin/false
_sshd,/usr/bin/false
_qtss,/usr/bin/false
_cyrus,/usr/bin/false
_mailman,/usr/bin/false
_appserver,/usr/bin/false
_clamav,/usr/bin/false
_amavisd,/usr/bin/false
_jabber,/usr/bin/false
_appowner,/usr/bin/false
_windowserver,/usr/bin/false
_spotlight,/usr/bin/false
_tokend,/usr/bin/false
_securityagent,/usr/bin/false
_calendar,/usr/bin/false
_teamsserver,/usr/bin/false
_update_sharing,/usr/bin/false
_installer,/usr/bin/false
_atsserver,/usr/bin/false
_ftp,/usr/bin/false
_unknown,/usr/bin/false
_softwareupdate,/usr/bin/false
_coreaudiod,/usr/bin/false
_screensaver,/usr/bin/false
_locationd,/usr/bin/false
_trustevaluationagent,/usr/bin/false
_timezone,/usr/bin/false
_lda,/usr/bin/false
_cvmsroot,/usr/bin/false
_usbmuxd,/usr/bin/false
_dovecot,/usr/bin/false
_dpaudio,/usr/bin/false
_postgres,/usr/bin/false
_krbtgt,/usr/bin/false
_kadmin_admin,/usr/bin/false
_kadmin_changepw,/usr/bin/false
_devicemgr,/usr/bin/false
_webauthserver,/usr/bin/false
_netbios,/usr/bin/false
_warmd,/usr/bin/false
_dovenull,/usr/bin/false
_netstatistics,/usr/bin/false
_avbdeviced,/usr/bin/false
_krb_krbtgt,/usr/bin/false
_krb_kadmin,/usr/bin/false
_krb_changepw,/usr/bin/false
_krb_kerberos,/usr/bin/false
_krb_anonymous,/usr/bin/false
_assetcache,/usr/bin/false
_coremediaiod,/usr/bin/false
_launchservicesd,/usr/bin/false
_iconservices,/usr/bin/false
_distnote,/usr/bin/false
_nsurlsessiond,/usr/bin/false
_displaypolicyd,/usr/bin/false
_astris,/usr/bin/false
_krbfast,/usr/bin/false
_gamecontrollerd,/usr/bin/false
_mbsetupuser,/bin/bash
_ondemand,/usr/bin/false
_xserverdocs,/usr/bin/false
_wwwproxy,/usr/bin/false
_mobileasset,/usr/bin/false
_findmydevice,/usr/bin/false
_datadetectors,/usr/bin/false
_captiveagent,/usr/bin/false
_ctkd,/usr/bin/false
_applepay,/usr/bin/false
_hidd,/usr/bin/false
_cmiodalassistants,/usr/bin/false
_analyticsd,/usr/bin/false
_fpsd,/usr/bin/false
_timed,/usr/bin/false
_nearbyd,/usr/bin/false
_reportmemoryexception,/usr/bin/false
_driverkit,/usr/bin/false
_diskimagesiod,/usr/bin/false
_logd,/usr/bin/false
_appinstalld,/usr/bin/false
_installcoordinationd,/usr/bin/false
_demod,/usr/bin/false
_rmd,/usr/bin/false
_accessoryupdater,/usr/bin/false
_knowledgegraphd,/usr/bin/false
_coreml,/usr/bin/false
_sntpd,/usr/bin/false
_trustd,/usr/bin/false
_mmaintenanced,/usr/bin/false
_darwindaemon,/usr/bin/false
_notification_proxy,/usr/bin/false
_avphidbridge,/usr/bin/false
_biome,/usr/bin/false
_backgroundassets,/usr/bin/false
_mobilegestalthelper,/usr/bin/false
_audiomxd,/usr/bin/false
_terminusd,/usr/bin/false
_neuralengine,/usr/bin/false
_eligibilityd,/usr/bin/false
_systemstatusd,/usr/bin/false
_aonsensed,/usr/bin/false
_modelmanagerd,/usr/bin/false
_reportsystemmemory,/usr/bin/false
_swtransparencyd,/usr/bin/false
_naturallanguaged,/usr/bin/false
_oahd,/usr/bin/false
  • Print login names and indicate those with UID>1000 as vip:
awk -F: -v status="" '{OFS = ","} 
{if ($3 >= 1000) status="vip"; else status="regular"} 
{print $1, status}' /etc/passwd
##,regular
# User Database,regular
# ,regular
# Note that this file is consulted directly only when the system is running,regular
# in single-user mode.  At other times this information is provided by,regular
# Open Directory.,regular
#,regular
# See the opendirectoryd(8) man page for additional information about,regular
# Open Directory.,regular
##,regular
nobody,regular
root,regular
daemon,regular
_uucp,regular
_taskgated,regular
_networkd,regular
_installassistant,regular
_lp,regular
_postfix,regular
_scsd,regular
_ces,regular
_appstore,regular
_mcxalr,regular
_appleevents,regular
_geod,regular
_devdocs,regular
_sandbox,regular
_mdnsresponder,regular
_ard,regular
_www,regular
_eppc,regular
_cvs,regular
_svn,regular
_mysql,regular
_sshd,regular
_qtss,regular
_cyrus,regular
_mailman,regular
_appserver,regular
_clamav,regular
_amavisd,regular
_jabber,regular
_appowner,regular
_windowserver,regular
_spotlight,regular
_tokend,regular
_securityagent,regular
_calendar,regular
_teamsserver,regular
_update_sharing,regular
_installer,regular
_atsserver,regular
_ftp,regular
_unknown,regular
_softwareupdate,regular
_coreaudiod,regular
_screensaver,regular
_locationd,regular
_trustevaluationagent,regular
_timezone,regular
_lda,regular
_cvmsroot,regular
_usbmuxd,regular
_dovecot,regular
_dpaudio,regular
_postgres,regular
_krbtgt,regular
_kadmin_admin,regular
_kadmin_changepw,regular
_devicemgr,regular
_webauthserver,regular
_netbios,regular
_warmd,regular
_dovenull,regular
_netstatistics,regular
_avbdeviced,regular
_krb_krbtgt,regular
_krb_kadmin,regular
_krb_changepw,regular
_krb_kerberos,regular
_krb_anonymous,regular
_assetcache,regular
_coremediaiod,regular
_launchservicesd,regular
_iconservices,regular
_distnote,regular
_nsurlsessiond,regular
_displaypolicyd,regular
_astris,regular
_krbfast,regular
_gamecontrollerd,regular
_mbsetupuser,regular
_ondemand,regular
_xserverdocs,regular
_wwwproxy,regular
_mobileasset,regular
_findmydevice,regular
_datadetectors,regular
_captiveagent,regular
_ctkd,regular
_applepay,regular
_hidd,regular
_cmiodalassistants,regular
_analyticsd,regular
_fpsd,regular
_timed,regular
_nearbyd,regular
_reportmemoryexception,regular
_driverkit,regular
_diskimagesiod,regular
_logd,regular
_appinstalld,regular
_installcoordinationd,regular
_demod,regular
_rmd,regular
_accessoryupdater,regular
_knowledgegraphd,regular
_coreml,regular
_sntpd,regular
_trustd,regular
_mmaintenanced,regular
_darwindaemon,regular
_notification_proxy,regular
_avphidbridge,regular
_biome,regular
_backgroundassets,regular
_mobilegestalthelper,regular
_audiomxd,regular
_terminusd,regular
_neuralengine,regular
_eligibilityd,regular
_systemstatusd,regular
_aonsensed,regular
_modelmanagerd,regular
_reportsystemmemory,regular
_swtransparencyd,regular
_naturallanguaged,regular
_oahd,regular

6.7 Text editors

Source: Editor War on Wikipedia.

6.7.1 Vi

  • Vi is ubiquitous (POSIX standard). Learn at least its basics; otherwise you can edit nothing on some clusters.

  • Basic survival commands:

    • vi filename to start editing a file.
    • vi is a modal editor: insert mode and normal mode. Pressing i switches from the normal mode to insert mode. Pressing ESC switches from the insert mode to normal mode.
    • :x<Return> quits vi and saves changes.
    • :q!<Return> quits vi without saving latest changes.
    • :w<Return> saves changes.
    • :wq<Return> quits vi and saves changes.
  • Google vi cheatsheet:

6.7.2 Emacs

  • Emacs is a powerful text editor with extensive support for many languages including R, \(\LaTeX\), python, and C/C++; however it’s not installed by default on many Linux distributions.

  • Basic survival commands:

    • emacs filename to open a file with emacs.
    • CTRL-x CTRL-f to open an existing or new file.
    • CTRL-x CTRX-s to save.
    • CTRL-x CTRL-w to save as.
    • CTRL-x CTRL-c to quit.
  • Google emacs cheatsheet

C-<key> means hold the control key, and press <key>.
M-<key> means press the Esc key once, and press <key>.

7 IDE (Integrated Development Environment)

  • Statisticians/data scientists write a lot of code. Critical to adopt a good IDE that goes beyond code editing: syntax highlighting, executing code within editor, debugging, profiling, version control, etc.

  • RStudio, JupyterLab, Eclipse, Emacs, Matlab, Visual Studio, VS Code, etc.

8 Processes

8.1 Cancel a non-responding program

  • Press Ctrl+C to cancel a non-responding or long-running program.

8.2 Processes

  • OS runs processes on behalf of user.

  • Each process has Process ID (PID), Username (UID), Parent process ID (PPID), Time and data process started (STIME), time running (TIME), etc.

ps
  PID TTY           TIME CMD
32532 ttys000    0:00.27 -zsh
  • All current running processes:
ps -eaf
  UID   PID  PPID   C STIME   TTY           TIME CMD
    0     1     0   0 21Dec24 ??        58:54.32 /sbin/launchd
  504   324     1   0 Mon11AM ??       109:56.32 /Applications/zoom.us.app/Contents/MacOS/zoom.us
  504   335   324   0 Mon11AM ??         0:22.04 /Applications/zoom.us.app/Contents/Frameworks/caphost.app/Contents/MacOS/caphost -pid 324 -evtname caphost324 -key rpc
  504   341     1   0 Mon11AM ??         0:05.35 /System/Library/Frameworks/WebKit.framework/Versions/A/XPCServices/com.apple.WebKit.Networking.xpc/Contents/MacOS/com.apple.WebKit.Networking
  504   342     1   0 Mon11AM ??         0:06.11 /System/Library/Frameworks/WebKit.framework/Versions/A/XPCServices/com.apple.WebKit.GPU.xpc/Contents/MacOS/com.apple.WebKit.GPU
  504   343     1   0 Mon11AM ??         0:07.51 /System/Library/Frameworks/WebKit.framework/Versions/A/XPCServices/com.apple.WebKit.WebContent.xpc/Contents/MacOS/com.apple.WebKit.WebContent
  504   345   324   0 Mon11AM ??         8:41.95 /Applications/zoom.us.app/Contents/Frameworks/ZoomPhone.app/Contents/MacOS/ZoomPhone --zoomBundlePath=/Applications/zoom.us.app
  504   357     1   0 Mon11AM ??         0:01.81 /System/Library/Frameworks/WebKit.framework/Versions/A/XPCServices/com.apple.WebKit.WebContent.xpc/Contents/MacOS/com.apple.WebKit.WebContent
  504   441     1   0 Mon11AM ??         0:02.02 /System/Library/Frameworks/AppKit.framework/Versions/C/XPCServices/ThemeWidgetControlViewService.xpc/Contents/MacOS/ThemeWidgetControlViewService
  504   473     1   0 Mon11AM ??         0:00.33 /System/Library/Frameworks/Metal.framework/Versions/A/XPCServices/MTLCompilerService.xpc/Contents/MacOS/MTLCompilerService
  504   474     1   0 Mon11AM ??         0:00.31 /System/Library/Frameworks/Metal.framework/Versions/A/XPCServices/MTLCompilerService.xpc/Contents/MacOS/MTLCompilerService
    0   519     1   0 21Dec24 ??        22:18.94 /usr/libexec/logd
    0   520     1   0 21Dec24 ??        18:39.39 /usr/libexec/smd
    0   521     1   0 21Dec24 ??         0:50.95 /usr/libexec/UserEventAgent (System)
    0   523     1   0 21Dec24 ??         8:27.69 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/FSEvents.framework/Versions/A/Support/fseventsd
    0   524     1   0 21Dec24 ??         0:16.84 /System/Library/PrivateFrameworks/MediaRemote.framework/Support/mediaremoted
    0   526     1   0 21Dec24 ??         0:28.06 /usr/sbin/systemstats --daemon
    0   529     1   0 21Dec24 ??         3:07.97 /usr/libexec/configd
    0   530     1   0 21Dec24 ??         0:00.05 endpointsecurityd
    0   531     1   0 21Dec24 ??         3:51.64 /System/Library/CoreServices/powerd.bundle/powerd
    0   532     1   0 21Dec24 ??         0:00.71 /usr/libexec/IOMFB_bics_daemon
    0   534     1   0 21Dec24 ??         0:05.61 /usr/libexec/amfid
    0   536     1   0 21Dec24 ??         0:13.44 /usr/libexec/remoted
    0   538     1   0 21Dec24 ??         0:00.43 /usr/libexec/keybagd -t 15
  200   539     1   0 21Dec24 ??         0:01.55 /System/Library/PrivateFrameworks/MobileSoftwareUpdate.framework/Support/softwareupdated
    0   541     1   0 21Dec24 ??         0:06.63 /usr/libexec/watchdogd
    0   545     1   0 21Dec24 ??        41:12.48 /System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Support/mds
  240   546     1   0 21Dec24 ??         0:01.50 /System/Library/CoreServices/iconservicesd
    0   547     1   0 21Dec24 ??         0:00.86 /usr/libexec/kernelmanagerd
    0   548     1   0 21Dec24 ??         0:15.18 /usr/libexec/diskarbitrationd
    0   552     1   0 21Dec24 ??         8:19.27 /usr/libexec/coreduetd
    0   553     1   0 21Dec24 ??         0:50.10 /usr/sbin/syslogd
    0   556     1   0 21Dec24 ??         0:43.90 /usr/libexec/thermalmonitord
    0   557     1   0 21Dec24 ??        19:18.78 /usr/libexec/opendirectoryd
    0   559     1   0 21Dec24 ??         2:22.68 /System/Library/PrivateFrameworks/ApplePushService.framework/apsd
    0   560     1   0 21Dec24 ??         2:45.57 /System/Library/CoreServices/launchservicesd
  266   561     1   0 21Dec24 ??         0:06.48 /usr/libexec/timed
  213   562     1   0 21Dec24 ??         1:07.17 /System/Library/PrivateFrameworks/MobileDevice.framework/Versions/A/Resources/usbmuxd -launchd
    0   563     1   0 21Dec24 ??         1:06.68 /usr/sbin/securityd -i
    0   567     1   0 21Dec24 ??         0:23.53 /usr/libexec/nesessionmanager
    0   569     1   0 21Dec24 ??         0:00.02 autofsd
    0   570     1   0 21Dec24 ??         5:11.03 /usr/libexec/dasd
  241   572     1   0 21Dec24 ??        20:18.98 /usr/sbin/distnoted daemon
    0   573     1   0 21Dec24 ??         0:00.55 /System/Library/PrivateFrameworks/AppleCredentialManager.framework/AppleCredentialManagerDaemon
    0   575     1   0 21Dec24 ??         0:00.10 /usr/libexec/dirhelper
    0   576     1   0 21Dec24 ??         0:00.41 /System/Library/CoreServices/logind
    0   577     1   0 21Dec24 ??         0:00.61 /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Support/revisiond
    0   578     1   0 21Dec24 ??         0:00.01 /usr/sbin/KernelEventAgent
    0   579     1   0 21Dec24 ??         0:01.40 /usr/libexec/usermanagerd -t 15
    0   581     1   0 21Dec24 ??        12:50.24 /usr/sbin/bluetoothd
    0   582     1   0 21Dec24 ??         9:08.02 /usr/sbin/notifyd
    0   583     1   0 21Dec24 ??         0:08.01 /usr/libexec/sandboxd
    0   584     1   0 21Dec24 ??         4:48.95 /usr/libexec/corebrightnessd --launchd
    0   585     1   0 21Dec24 ??         0:38.65 /usr/libexec/AirPlayXPCHelper
    0   586     1   0 21Dec24 ??         0:25.77 /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/Resources/com.apple.cmio.registerassistantservice
    0   587     1   0 21Dec24 ??         0:06.93 /usr/libexec/logd_helper
   88   588     1   0 21Dec24 ??       446:05.52 /System/Library/PrivateFrameworks/SkyLight.framework/Resources/WindowServer -daemon
    0   589     1   0 21Dec24 ??         2:16.35 /System/Library/PrivateFrameworks/TCC.framework/Support/tccd system
    0   590     1   0 21Dec24 ??         0:00.15 aslmanager
    0   591     1   0 21Dec24 ??         4:28.75 /usr/sbin/cfprefsd daemon
  504   592     1   0 21Dec24 ??         5:33.60 /System/Library/CoreServices/loginwindow.app/Contents/MacOS/loginwindow console
    0   593     1   0 21Dec24 ??        16:38.34 /usr/libexec/runningboardd
    0   594     1   0 21Dec24 ??         2:27.85 /System/Library/PrivateFrameworks/CoreDuetContext.framework/Resources/contextstored
    0   595     1   0 21Dec24 ??         0:16.24 /System/Library/CoreServices/coreservicesd
    0   596     1   0 21Dec24 ??         1:16.23 /usr/libexec/lsd runAsRoot
    0   597     1   0 21Dec24 ??        33:21.53 /usr/libexec/airportd
  263   598     1   0 21Dec24 ??         1:07.77 /System/Library/PrivateFrameworks/CoreAnalytics.framework/Support/analyticsd
    0   601     1   0 21Dec24 ??         0:00.81 /System/Library/CoreServices/liquiddetectiond.app/liquiddetectiond
    0   602     1   0 21Dec24 ??         3:09.11 /usr/libexec/apfsd
  242   603     1   0 21Dec24 ??         1:55.31 /usr/libexec/nsurlsessiond --privileged
    0   604     1   0 21Dec24 ??         0:28.01 /usr/libexec/nehelper
  202   605     1   0 21Dec24 ??        80:02.55 /usr/sbin/coreaudiod
    0   606     1   0 21Dec24 ??         0:01.01 /usr/libexec/usbd
    0   607     1   0 21Dec24 ??         0:00.40 /usr/libexec/containermanagerd_system --runmode=privileged --user-container-mode=current --bundle-container-mode=global --bundle-container-owner=_appinstalld --system-container-mode=none
    0   608     1   0 21Dec24 ??         0:02.72 /usr/libexec/biometrickitd --launchd
    0   609     1   0 21Dec24 ??         0:00.12 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/XPCServices/csnameddatad.xpc/Contents/MacOS/csnameddatad
    0   617     1   0 21Dec24 ??         0:00.18 /usr/libexec/powerexperienced
    0   618     1   0 21Dec24 ??         3:50.88 /System/Library/CoreServices/TimeMachine/backupd-helper -launchd
    0   619     1   0 21Dec24 ??         0:02.59 /usr/libexec/PowerUIAgent
    0   621     1   0 21Dec24 ??         0:00.02 /usr/libexec/cryptexd
    0   622     1   0 21Dec24 ??        19:05.93 /usr/libexec/mobileassetd
    0   625     1   0 21Dec24 ??         2:54.82 /usr/sbin/distnoted agent
    0   627     1   0 21Dec24 ??         0:00.10 /usr/libexec/ApplicationFirewall/socketfilterfw
   24   628     1   0 21Dec24 ??         6:14.30 /usr/libexec/symptomsd
  289   629     1   0 21Dec24 ??         0:15.62 /System/Library/PrivateFrameworks/BiomeStreams.framework/Support/biomed
    0   630     1   0 21Dec24 ??         0:05.34 /System/Library/CoreServices/ReportCrash daemon
    0   631     1   0 21Dec24 ??         0:00.43 /System/Library/Frameworks/SystemExtensions.framework/Versions/A/Helpers/sysextd
    0   634     1   0 21Dec24 ??         0:12.56 /System/Library/Frameworks/Security.framework/Versions/A/XPCServices/authd.xpc/Contents/MacOS/authd
    0   635     1   0 21Dec24 ??         0:00.07 /usr/libexec/trustdFileHelper
    0   636     1   0 21Dec24 ??         0:14.74 /System/Library/PrivateFrameworks/SystemStatusServer.framework/Support/systemstatusd
  202   639     1   0 21Dec24 ??         2:07.72 /usr/sbin/distnoted agent
    0   640     1   0 21Dec24 ??         0:02.53 /usr/libexec/eligibilityd
  261   641     1   0 21Dec24 ??         0:00.08 /usr/libexec/hidd
   88   643     1   0 21Dec24 ??         2:00.33 /usr/sbin/distnoted agent
    0   644     1   0 21Dec24 ??         0:01.08 /usr/libexec/secinitd
    0   645     1   0 21Dec24 ??         0:02.90 /System/Library/Frameworks/Security.framework/Versions/A/XPCServices/com.apple.CodeSigningHelper.xpc/Contents/MacOS/com.apple.CodeSigningHelper
  205   646     1   0 21Dec24 ??         0:09.69 /System/Library/PrivateFrameworks/GeoServices.framework/Versions/A/XPCServices/com.apple.geod.xpc/Contents/MacOS/com.apple.geod
  205   647     1   0 21Dec24 ??         1:59.65 /usr/sbin/distnoted agent
    0   648     1   0 21Dec24 ??        36:58.11 /System/Library/PrivateFrameworks/BackgroundTaskManagement.framework/Resources/backgroundtaskmanagementd -daemon
  205   649     1   0 21Dec24 ??         0:00.15 /usr/libexec/secinitd
  262   650     1   0 21Dec24 ??         1:57.62 /usr/sbin/distnoted agent
  205   653     1   0 21Dec24 ??         0:00.48 /usr/sbin/cfprefsd agent
    0   654     1   0 21Dec24 ??         0:08.82 /System/Library/PrivateFrameworks/ModelCatalogRuntime.framework/Versions/A/modelcatalogd
    0   656     1   0 21Dec24 ??         0:21.74 /Library/Apple/System/Library/CoreServices/XProtect.app/Contents/XPCServices/XProtectPluginService.xpc/Contents/MacOS/XProtectPluginService
    0   659     1   0 21Dec24 ??         0:05.11 /usr/libexec/ospredictiond
    0   660     1   0 21Dec24 ??         0:00.10 /System/Library/PrivateFrameworks/PowerLog.framework/Versions/A/XPCServices/PerfPowerTelemetryClientRegistrationService.xpc/Contents/MacOS/PerfPowerTelemetryClientRegistrationService
    0   661     1   0 21Dec24 ??         0:00.13 /usr/libexec/colorsync.displayservices
  205   662     1   0 21Dec24 ??         0:00.07 /usr/libexec/containermanagerd --runmode=agent --user-container-mode=current --bundle-container-mode=proxy --system-container-mode=none
    0   663     1   0 21Dec24 ??         0:01.60 /System/Library/PrivateFrameworks/CoreSymbolication.framework/coresymbolicationd
    0   664     1   0 21Dec24 ??         0:00.01 /System/Library/Frameworks/ColorSync.framework/Versions/A/XPCServices/com.apple.ColorSyncXPCAgent.xpc/Contents/MacOS/com.apple.ColorSyncXPCAgent
    0   665     1   0 21Dec24 ??         0:00.12 /usr/libexec/colorsyncd
   65   666     1   0 21Dec24 ??         6:52.27 /usr/sbin/mDNSResponder
    0   668     1   0 21Dec24 ??         0:09.62 /usr/sbin/mDNSResponderHelper
    0   680     1   0 21Dec24 ??         0:00.01 /System/Library/Frameworks/NetFS.framework/Versions/A/XPCServices/PlugInLibraryService.xpc/Contents/MacOS/PlugInLibraryService
    0   684     1   0 21Dec24 ??         0:02.96 /usr/libexec/securityd_system
    0   687     1   0 21Dec24 ??        10:59.72 /usr/libexec/syspolicyd
  202   688     1   0 21Dec24 ??         0:18.59 Core Audio Driver (MSTeamsAudioDevice.driver)
  202   689     1   0 21Dec24 ??         0:00.01 /System/Library/Frameworks/CoreAudio.framework/Versions/A/XPCServices/com.apple.audio.DriverHelper.xpc/Contents/MacOS/com.apple.audio.DriverHelper
    0   690     1   0 21Dec24 ??         0:00.06 /System/Library/Frameworks/AudioToolbox.framework/AudioComponentRegistrar -daemon
  262   691     1   0 21Dec24 ??         7:22.94 /usr/sbin/appleh13camerad
    0   692     1   0 21Dec24 ??         0:13.56 /usr/libexec/storagekitd
  262   693     1   0 21Dec24 ??         0:00.14 /usr/libexec/cameracaptured
  262   694     1   0 21Dec24 ??         0:02.17 /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/Resources/UVCAssistant.systemextension/Contents/MacOS/UVCAssistant
  202   697     1   0 21Dec24 ??         0:00.02 /System/Library/Frameworks/AudioToolbox.framework/XPCServices/com.apple.audio.SandboxHelper.xpc/Contents/MacOS/com.apple.audio.SandboxHelper
    0   698     1   0 21Dec24 ??         0:27.80 /usr/sbin/WirelessRadioManagerd
    0   700     1   0 21Dec24 ??         0:00.04 /usr/libexec/tzlinkd
    0   701     1   0 21Dec24 ??         2:14.38 /usr/libexec/audioclocksyncd
    0   702     1   0 21Dec24 ??         0:00.35 /usr/libexec/findmybeaconingd
    0   703     1   0 21Dec24 ??         1:48.12 /System/Library/CoreServices/TimeMachine/backupd
    0   704     1   0 21Dec24 ??         0:00.01 /System/Library/Frameworks/NetFS.framework/Versions/A/XPCServices/PlugInLibraryService.xpc/Contents/MacOS/PlugInLibraryService
    0   705     1   0 21Dec24 ??         0:00.60 /System/Library/CoreServices/Software Update.app/Contents/Resources/suhelperd
    0   706     1   0 21Dec24 ??         0:58.48 /usr/libexec/audioanalyticsd
  202   707     1   0 21Dec24 ??         0:00.03 /System/Library/PrivateFrameworks/AppleDeviceQuerySupport.framework/Versions/A/XPCServices/AppleDeviceQueryService.xpc/Contents/MacOS/AppleDeviceQueryService
  301   708     1   0 21Dec24 ??         0:05.46 /usr/libexec/modelmanagerd
    0   709     1   0 21Dec24 ??         0:00.37 /usr/libexec/symptomsd-diag
    0   712     1   0 21Dec24 ??         1:39.92 /usr/libexec/sysmond
    0   716   526   0 21Dec24 ??         0:02.35 /usr/sbin/systemstats --logger-helper /private/var/db/systemstats
  270   717     1   0 21Dec24 ??        43:15.36 /System/Library/DriverExtensions/com.apple.DriverKit-AppleBCMWLAN.dext/com.apple.DriverKit-AppleBCMWLAN com.apple.bcmwlan 0x100000f7b com.apple.DriverKit-AppleBCMWLAN
  270   718     1   0 21Dec24 ??         0:00.19 /System/Library/DriverExtensions/com.apple.DriverKit-IOUserDockChannelSerial.dext/com.apple.DriverKit-IOUserDockChannelSerial com.apple.IOUserDockChannelSerial 0x100001111 com.apple.DriverKit-IOUserDockChannelSerial
  270   719     1   0 21Dec24 ??         5:40.44 /System/Library/DriverExtensions/com.apple.AppleUserHIDDrivers.dext/com.apple.AppleUserHIDDrivers com.apple.driverkit.AppleUserHIDDrivers 0x100001119 com.apple.AppleUserHIDDrivers
  278   729     1   0 21Dec24 ??         1:58.17 /usr/sbin/distnoted agent
  262   731     1   0 21Dec24 ??         0:08.48 /System/Library/PrivateFrameworks/GeoServices.framework/Versions/A/XPCServices/com.apple.geod.xpc/Contents/MacOS/com.apple.geod
    0   732     1   0 21Dec24 ??         0:00.05 /System/Library/PrivateFrameworks/SystemAdministration.framework/XPCServices/writeconfig.xpc/Contents/MacOS/writeconfig
  262   733     1   0 21Dec24 ??         0:00.19 /usr/libexec/secinitd
  262   734     1   0 21Dec24 ??         0:00.47 /usr/sbin/cfprefsd agent
  262   736     1   0 21Dec24 ??         0:00.09 /usr/libexec/containermanagerd --runmode=agent --user-container-mode=current --bundle-container-mode=proxy --system-container-mode=none
    0   738     1   0 21Dec24 ??         4:35.14 /usr/libexec/searchpartyd
  200   739     1   0 21Dec24 ??         1:22.38 /System/Library/CoreServices/Software Update.app/Contents/Resources/softwareupdated
  200   740     1   0 21Dec24 ??         1:56.80 /usr/sbin/distnoted agent
    0   741     1   0 21Dec24 ??         0:00.88 /System/Library/PrivateFrameworks/MobileSoftwareUpdate.framework/Versions/A/XPCServices/com.apple.MobileSoftwareUpdate.CleanupPreparePathService.xpc/Contents/MacOS/com.apple.MobileSoftwareUpdate.CleanupPreparePathService
    0   742     1   0 21Dec24 ??         4:45.28 /usr/libexec/wifip2pd
    0   744     1   0 21Dec24 ??         0:00.02 /System/Library/PrivateFrameworks/WiFiPolicy.framework/XPCServices/WiFiCloudAssetsXPCService.xpc/Contents/MacOS/WiFiCloudAssetsXPCService
    0   746     1   0 21Dec24 ??         0:17.53 /usr/libexec/wifianalyticsd
  258   747     1   0 21Dec24 ??         0:00.43 /usr/libexec/captiveagent
  205   748     1   0 21Dec24 ??         8:45.89 /usr/libexec/locationd
   55   751     1   0 21Dec24 ??         0:01.64 /System/Library/CoreServices/appleeventsd --server
  202   752     1   0 21Dec24 ??         0:08.38 Core Audio Driver (ZoomAudioDevice.driver)
  202   753     1   0 21Dec24 ??         0:00.05 /usr/libexec/containermanagerd --runmode=agent --user-container-mode=current --bundle-container-mode=proxy --system-container-mode=none
    0   754     1   0 21Dec24 ??         3:12.44 /System/Library/PrivateFrameworks/XprotectFramework.framework/Versions/A/XPCServices/XprotectService.xpc/Contents/MacOS/XprotectService
    0   755     1   0 21Dec24 ??         1:32.11 vpnagentd -execv_instance
    0   756     1   0 21Dec24 ??         0:00.43 /usr/libexec/bootinstalld
    0   785     1   0 21Dec24 ??         0:00.01 /System/Library/Frameworks/NetFS.framework/Versions/A/XPCServices/PlugInLibraryService.xpc/Contents/MacOS/PlugInLibraryService
    0   800     1   0 21Dec24 ??         5:44.63 /Library/Application Support/iStat Menus 7/com.bjango.istatmenus.daemon
    0   803     1   0 21Dec24 ??         1:13.40 /Library/Application Support/JAMF/Jamf.app/Contents/MacOS/JamfDaemon.app/Contents/MacOS/JamfDaemon
    0   805     1   0 21Dec24 ??         4:25.16 /Applications/Aruba Networks/ClearPassOnGuard.app/Contents/PlugIns/OnGuard.bundle/Contents/MacOS/OnGuardService
    0   807     1   0 21Dec24 ??        39:22.05 /Applications/Aruba Networks/ClearPassOnGuard.app/Contents/PlugIns/OnGuard.bundle/Contents/MacOS/ServiceDaemon
    0   808     1   0 21Dec24 ??         0:47.40 /Library/FireEye/xagt/xagt.app/Contents/MacOS/xagt -M DAEMON
    0   810     1   0 21Dec24 ??         0:03.40 /Library/Application Support/Box/Box/Autoupdater/Box Autoupdater.app/Contents/MacOS/Box Autoupdater
    0   812     1   0 21Dec24 ??         0:47.16 /Applications/QualysCloudAgent.app/Contents/MacOS/qualys-cloud-agent
    0   813     1   0 21Dec24 ??         0:00.26 /Library/PrivilegedHelperTools/com.docker.vmnetd
    0   814     1   0 21Dec24 ??        12:32.54 /Library/SystemExtensions/9AB1EB1B-E2CF-473F-AD56-FA96FF33CEA5/com.cisco.anyconnect.macos.acsockext.systemextension/Contents/MacOS/com.cisco.anyconnect.macos.acsockext
    0   826     1   0 21Dec24 ??       260:06.86 /System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/mds_stores
    0   834     1   0 21Dec24 ??         7:24.28 /Library/SystemExtensions/6E39805F-E593-4B82-A0B4-6809C705FF20/com.fireeye.system-extension.systemextension/Contents/MacOS/com.fireeye.system-extension
  242   838     1   0 21Dec24 ??         2:01.12 /usr/sbin/distnoted agent
    0   854     1   0 21Dec24 ??         0:00.19 /System/Library/PrivateFrameworks/XprotectFramework.framework/Versions/A/XPCServices/XProtectBridgeService.xpc/Contents/MacOS/XProtectBridgeService
    0   881     1   0 21Dec24 ??         0:15.84 /usr/libexec/rtcreportingd
    0   882     1   0 21Dec24 ??         0:01.79 /usr/libexec/countryd
   89   884     1   0 21Dec24 ??         1:54.45 /usr/sbin/distnoted agent
    0   887     1   0 21Dec24 ??         0:00.05 /System/Library/CoreServices/iconservicesagent runAsRoot
    0   889     1   0 21Dec24 ??         0:53.47 /usr/sbin/spindump
    0   890     1   0 21Dec24 ??         0:00.25 /System/Library/CoreServices/SubmitDiagInfo server-init
    0   893     1   0 21Dec24 ??         2:46.98 /System/Library/PrivateFrameworks/PackageKit.framework/Resources/system_installd
  441   904     1   0 21Dec24 ??         5:17.92 /usr/libexec/rosetta/oahd
  504   905     1   0 Mon11AM ??         0:00.04 /System/Library/Frameworks/Metal.framework/Versions/A/XPCServices/MTLCompilerService.xpc/Contents/MacOS/MTLCompilerService
    0   908     1   0 21Dec24 ??         0:06.35 /usr/sbin/systemsoundserverd
   89   916     1   0 21Dec24 ??         0:26.69 /System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/mdworker -s mdworker-sizing -c MDSSizingWorker -m com.apple.mdworker.sizing
    0   917     1   0 21Dec24 ??         0:00.30 /System/Library/PrivateFrameworks/AccountPolicy.framework/XPCServices/com.apple.AccountPolicyHelper.xpc/Contents/MacOS/com.apple.AccountPolicyHelper
    0   927     1   0 21Dec24 ??         0:01.33 /System/Library/Frameworks/LocalAuthentication.framework/Support/coreauthd
    0   928     1   0 21Dec24 ??         0:00.04 /usr/libexec/applekeystored
  504   929     1   0 21Dec24 ??        46:07.41 /usr/sbin/distnoted agent
  504   930     1   0 21Dec24 ??         2:41.37 /usr/sbin/cfprefsd agent
  504   933     1   0 21Dec24 ??         1:43.90 /usr/libexec/secd
  504   934     1   0 21Dec24 ??         1:14.62 /usr/libexec/UserEventAgent (Aqua)
  247   935     1   0 21Dec24 ??         0:09.60 /usr/libexec/gamecontrollerd
  260   936     1   0 21Dec24 ??         0:00.50 /usr/libexec/seld
  504   938     1   0 21Dec24 ??         1:05.44 /System/Library/Frameworks/Accounts.framework/Versions/A/Support/accountsd
  504   939     1   0 21Dec24 ??         0:24.11 /System/Library/CoreServices/CoreServicesUIAgent.app/Contents/MacOS/CoreServicesUIAgent
  504   940     1   0 21Dec24 ??         0:14.08 /usr/sbin/universalaccessd launchd -s
  504   942     1   0 21Dec24 ??         0:09.25 /usr/libexec/pboard
  504   943     1   0 21Dec24 ??         0:02.27 /System/Library/PrivateFrameworks/BackgroundTaskManagement.framework/Support/BackgroundTaskManagementAgent.app/Contents/MacOS/BackgroundTaskManagementAgent
  504   944     1   0 21Dec24 ??         1:05.80 /usr/libexec/lsd
  504   945     1   0 21Dec24 ??         0:45.38 /System/Library/PrivateFrameworks/AssistantServices.framework/Versions/A/Support/assistantd
  504   946     1   0 21Dec24 ??         3:00.36 /usr/libexec/triald
  504   947     1   0 21Dec24 ??         0:02.06 /System/Library/PrivateFrameworks/NewDeviceOutreach.framework/ndoagent
  504   948     1   0 21Dec24 ??         0:22.53 /usr/libexec/containermanagerd --runmode=agent --user-container-mode=current --bundle-container-mode=proxy --system-container-mode=none
  504   949     1   0 21Dec24 ??         0:00.10 /usr/libexec/icloudmailagent
  504   950     1   0 21Dec24 ??         0:00.02 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/XPCServices/csnameddatad.xpc/Contents/MacOS/csnameddatad
  504   951     1   0 21Dec24 ??         0:04.83 /System/Library/Frameworks/CoreTelephony.framework/Support/CommCenter -L
  504   953     1   0 21Dec24 ??         0:00.03 /System/Library/CoreServices/APFSUserAgent
  504   955     1   0 21Dec24 ??         0:54.02 /usr/libexec/nsurlsessiond
  504   956     1   0 21Dec24 ??         1:06.12 /usr/libexec/rapportd
  504   957     1   0 21Dec24 ??         0:28.41 /usr/sbin/usernoted
  504   958     1   0 21Dec24 ??         8:05.44 /usr/libexec/routined LAUNCHED_BY_LAUNCHD
  504   959     1   0 21Dec24 ??         0:01.83 /System/Library/PrivateFrameworks/CloudServices.framework/Helpers/com.apple.sbd
  504   960     1   0 21Dec24 ??         1:08.94 /System/Library/PrivateFrameworks/CoreDuetContext.framework/Resources/ContextStoreAgent
  504   961     1   0 21Dec24 ??         0:34.39 /usr/libexec/secinitd
  504   962     1   0 21Dec24 ??         4:22.01 /System/Library/CoreServices/WiFiAgent.app/Contents/MacOS/WiFiAgent
  504   963     1   0 21Dec24 ??         0:03.51 /System/Library/CoreServices/CoreLocationAgent.app/Contents/MacOS/CoreLocationAgent
  504   964     1   0 21Dec24 ??         0:19.18 /System/Library/PrivateFrameworks/TelephonyUtilities.framework/callservicesd
  504   965     1   0 21Dec24 ??         0:06.68 /System/Library/PrivateFrameworks/SyncedDefaults.framework/Support/syncdefaultsd
  504   966     1   0 21Dec24 ??         1:59.55 /System/Library/PrivateFrameworks/IDS.framework/identityservicesd.app/Contents/MacOS/identityservicesd
  504   967     1   0 21Dec24 ??         1:21.80 /usr/libexec/networkserviceproxy
  504   970     1   0 21Dec24 ??         0:02.29 /System/Library/PrivateFrameworks/CoreCDP.framework/Versions/A/Resources/cdpd
  504   971     1   0 21Dec24 ??         2:41.73 /System/Library/PrivateFrameworks/CloudKitDaemon.framework/Support/cloudd
  504   972     1   0 21Dec24 ??         0:03.23 /System/Library/Frameworks/Security.framework/Versions/A/XPCServices/TrustedPeersHelper.xpc/Contents/MacOS/TrustedPeersHelper
  504   973     1   0 21Dec24 ??         0:12.32 /System/Library/PrivateFrameworks/DoNotDisturbServer.framework/Support/donotdisturbd
  504   974     1   0 21Dec24 ??         1:19.54 /System/Library/PrivateFrameworks/TCC.framework/Support/tccd
  504   977     1   0 21Dec24 ??         0:32.13 /System/Library/PrivateFrameworks/HomeKitDaemon.framework/Support/homed
  504   980     1   0 21Dec24 ??         0:07.16 /System/Library/PrivateFrameworks/ScreenTimeCore.framework/Versions/A/ScreenTimeAgent
  504   981     1   0 21Dec24 ??         0:00.47 /System/Library/PrivateFrameworks/CoreFollowUp.framework/Versions/A/Support/followupd
  504   982     1   0 21Dec24 ??         0:52.17 /System/Library/PrivateFrameworks/CalendarDaemon.framework/Support/calaccessd
  504   983     1   0 21Dec24 ??         0:02.73 /usr/libexec/findmylocateagent
  504   984     1   0 21Dec24 ??       593:09.77 /System/Library/PrivateFrameworks/MediaAnalysis.framework/Versions/A/mediaanalysisd
  504   985     1   0 21Dec24 ??         0:40.06 /System/Library/PrivateFrameworks/UserNotificationsCore.framework/Support/usernotificationsd
    0   986     1   0 21Dec24 ??         0:00.08 /System/Library/PrivateFrameworks/WirelessDiagnostics.framework/Support/awdd
  504   987     1   0 21Dec24 ??         0:35.25 /usr/libexec/knowledge-agent
  504   989     1   0 21Dec24 ??         1:29.78 /usr/libexec/ContinuityCaptureAgent server
  504   990     1   0 21Dec24 ??         0:38.01 /System/Library/PrivateFrameworks/SiriInference.framework/Versions/A/siriinferenced
  504   991     1   0 21Dec24 ??         0:02.73 /System/Library/Frameworks/FinanceKit.framework/financed
  504   992     1   0 21Dec24 ??         1:30.11 /usr/libexec/siriknowledged
  504   993     1   0 21Dec24 ??         0:43.56 /System/Library/PrivateFrameworks/UsageTracking.framework/Versions/A/UsageTrackingAgent
  504   994     1   0 21Dec24 ??         0:21.79 /usr/libexec/linkd
  504   995     1   0 21Dec24 ??        36:39.97 /System/Library/PrivateFrameworks/CoreSpeech.framework/corespeechd
  504   996     1   0 21Dec24 ??         0:05.61 /usr/libexec/neagent
  504   997     1   0 21Dec24 ??         0:00.25 /System/Library/Frameworks/ManagedSettings.framework/Versions/A/ManagedSettingsAgent
  504   998     1   0 21Dec24 ??         0:01.28 /usr/libexec/dmd
  504   999     1   0 21Dec24 ??         0:16.37 /System/Library/PrivateFrameworks/FamilyCircle.framework/Versions/A/Resources/familycircled
  504  1001     1   0 21Dec24 ??         0:03.40 /usr/libexec/appleaccountd
    0  1002     1   0 21Dec24 ??         0:13.15 /System/Library/CoreServices/osanalyticshelper server-init
  504  1003     1   0 21Dec24 ??         0:03.77 /System/Library/Frameworks/LocalAuthentication.framework/Support/coreauthd
  247  1004     1   0 21Dec24 ??         1:54.51 /usr/sbin/distnoted agent
    0  1005     1   0 21Dec24 ??         4:55.29 /usr/libexec/aned
    0  1006     1   0 21Dec24 ??         3:18.80 /System/Library/PrivateFrameworks/AppleNeuralEngine.framework/XPCServices/ANECompilerService.xpc/Contents/MacOS/ANECompilerService
  504  1007     1   0 21Dec24 ??         3:20.56 /usr/libexec/sharingd
  504  1008     1   0 21Dec24 ??         0:02.63 /System/Library/CoreServices/sharedfilelistd
  260  1009     1   0 21Dec24 ??         0:01.28 /usr/libexec/nfcd
  504  1010     1   0 21Dec24 ??         0:02.42 /System/Library/PrivateFrameworks/EmailDaemon.framework/Versions/A/maild
  504  1011     1   0 21Dec24 ??         0:02.65 /System/Library/PrivateFrameworks/SiriTTSService.framework/sirittsd
  504  1012     1   0 21Dec24 ??         0:02.02 /System/Library/PrivateFrameworks/ContinuousDialogManagerService.framework/assistant_cdmd
  504  1013     1   0 21Dec24 ??         8:14.75 /System/Library/CoreServices/ControlCenter.app/Contents/MacOS/ControlCenter
  504  1014     1   0 21Dec24 ??         0:09.30 /usr/libexec/gamecontrolleragentd
  504  1015     1   0 21Dec24 ??         0:00.17 /System/Library/PrivateFrameworks/CommunicationsFilter.framework/CMFSyncAgent
  504  1016     1   0 21Dec24 ??         3:04.30 /System/Library/PrivateFrameworks/BiomeStreams.framework/Support/BiomeAgent
  260  1017     1   0 21Dec24 ??         0:00.05 /System/Library/PrivateFrameworks/NearFieldPrivateServices.framework/Versions/A/XPCServices/NFStorageServer.xpc/Contents/MacOS/NFStorageServer
  260  1018     1   0 21Dec24 ??         1:55.43 /usr/sbin/distnoted agent
  504  1019     1   0 21Dec24 ??         5:48.20 /System/Library/PrivateFrameworks/CacheDelete.framework/deleted
  504  1020     1   0 21Dec24 ??         0:46.37 /System/Library/CoreServices/audioaccessoryd
  270  1021     1   0 21Dec24 ??         0:00.17 /System/Library/DriverExtensions/IOUserBluetoothSerialDriver.dext/IOUserBluetoothSerialDriver com.apple.IOUserBluetoothSerialDriver 0x10000126e com.apple.IOUserBluetoothSerialDriver
  270  1022     1   0 21Dec24 ??         0:00.15 /System/Library/DriverExtensions/IOUserBluetoothSerialDriver.dext/IOUserBluetoothSerialDriver com.apple.IOUserBluetoothSerialDriver 0x100001270 com.apple.IOUserBluetoothSerialDriver
  504  1023     1   0 21Dec24 ??         0:05.10 /System/Library/PrivateFrameworks/iCloudNotification.framework/iCloudNotificationAgent
    0  1024     1   0 21Dec24 ??         0:02.84 /usr/libexec/mobileactivationd
  504  1025     1   0 21Dec24 ??         0:12.53 /System/Library/PrivateFrameworks/AuthKit.framework/Versions/A/Support/akd
  504  1026     1   0 21Dec24 ??         0:03.37 /System/Library/PrivateFrameworks/AppSSO.framework/Support/AppSSOAgent.app/Contents/MacOS/AppSSOAgent
  504  1027     1   0 21Dec24 ??         0:08.73 /System/Library/PrivateFrameworks/SiriSuggestionsSupport.framework/Versions/A/XPCServices/SiriSuggestionsBookkeepingService.xpc/Contents/MacOS/SiriSuggestionsBookkeepingService
  504  1028     1   0 21Dec24 ??         0:04.53 /System/Library/Frameworks/CryptoTokenKit.framework/ctkd -tw
  504  1029     1   0 21Dec24 ??         2:19.88 /usr/libexec/pkd
  259  1030     1   0 21Dec24 ??         0:00.16 /System/Library/Frameworks/CryptoTokenKit.framework/ctkd -st
  504  1032     1   0 21Dec24 ??         0:01.43 /System/Library/PrivateFrameworks/IntelligencePlatformCore.framework/Versions/A/intelligenceplatformd
  504  1035     1   0 21Dec24 ??         0:21.92 /System/Library/PrivateFrameworks/GeoServices.framework/Versions/A/XPCServices/com.apple.geod.xpc/Contents/MacOS/com.apple.geod
  273  1046     1   0 21Dec24 ??         0:00.07 /System/Library/PrivateFrameworks/MobileInstallation.framework/Support/appinstalld
  504  1047     1   0 21Dec24 ??         0:47.17 /System/Library/PrivateFrameworks/AXAssetLoader.framework/Support/axassetsd
  504  1048     1   0 21Dec24 ??         0:01.71 /System/Library/CoreServices/pbs
    0  1049     1   0 21Dec24 ??         0:00.02 /System/Library/PrivateFrameworks/MobileInstallation.framework/XPCServices/com.apple.MobileInstallationHelperService.xpc/Contents/MacOS/com.apple.MobileInstallationHelperService
  273  1050     1   0 21Dec24 ??         1:56.95 /usr/sbin/distnoted agent
  296  1051     1   0 21Dec24 ??         0:00.51 /usr/libexec/aneuserd
    0  1052     1   0 21Dec24 ??         0:00.44 /usr/libexec/online-auth-agent
  504  1053     1   0 21Dec24 ??         8:42.54 /System/Library/CoreServices/WindowManager.app/Contents/MacOS/WindowManager
    0  1132     1   0 21Dec24 ??         0:00.81 /usr/libexec/findmydeviced
    0  1139     1   0 21Dec24 ??         0:00.04 /usr/libexec/misagent
  504  1140     1   0 21Dec24 ??         0:01.58 /System/Library/Frameworks/AudioToolbox.framework/AudioComponentRegistrar
  504  1147     1   0 21Dec24 ??         0:31.86 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices.framework/Versions/A/XPCServices/com.apple.hiservices-xpcservice.xpc/Contents/MacOS/com.apple.hiservices-xpcservice
   55  1148     1   0 21Dec24 ??         1:55.93 /usr/sbin/distnoted agent
    0  1149     1   0 21Dec24 ??         0:16.47 /usr/sbin/filecoordinationd
  504  1150     1   0 21Dec24 ??         0:04.16 /System/Library/PrivateFrameworks/VoiceShortcuts.framework/Versions/A/Support/siriactionsd
  504  1151     1   0 21Dec24 ??         0:01.07 /System/Library/PrivateFrameworks/SocialLayer.framework/sociallayerd.app/Contents/MacOS/sociallayerd
  504  1152     1   0 21Dec24 ??         4:43.33 /System/Library/PrivateFrameworks/CoreSuggestions.framework/Versions/A/Support/suggestd
  504  1153     1   0 21Dec24 ??         0:06.56 /System/Library/PrivateFrameworks/CloudDocsDaemon.framework/Versions/A/Support/bird
  504  1154     1   0 21Dec24 ??         0:28.58 /System/Library/CoreServices/iconservicesagent
  504  1156     1   0 21Dec24 ??         0:01.92 /System/Library/CoreServices/talagentd
  504  1157     1   0 21Dec24 ??         0:02.23 /usr/libexec/intelligentroutingd
  504  1160     1   0 21Dec24 ??         0:08.20 /System/Library/PrivateFrameworks/MobileTimer.framework/Executables/mobiletimerd
  504  1161     1   0 21Dec24 ??        12:30.29 /usr/libexec/replayd
    0  1163     1   0 21Dec24 ??         0:09.13 /System/Library/Frameworks/Metal.framework/Versions/A/XPCServices/MTLCompilerService.xpc/Contents/MacOS/MTLCompilerService
    0  1164     1   0 21Dec24 ??         0:00.19 /System/Library/Frameworks/Metal.framework/Versions/A/XPCServices/MTLCompilerService.xpc/Contents/MacOS/MTLCompilerService
  504  1169     1   0 21Dec24 ??         5:42.12 /System/Library/PrivateFrameworks/FileProvider.framework/Support/fileproviderd
  504  1170     1   0 21Dec24 ??         0:00.40 /System/Library/Frameworks/AudioToolbox.framework/XPCServices/CarbonComponentScannerXPC.xpc/Contents/MacOS/CarbonComponentScannerXPC
  504  1172     1   0 21Dec24 ??         1:22.85 /System/Library/PrivateFrameworks/ReplicatorCore.framework/Support/replicatord
  504  1173     1   0 21Dec24 ??         0:30.92 /usr/libexec/transparencyd
  504  1174     1   0 21Dec24 ??         2:02.69 /System/Library/CoreServices/NotificationCenter.app/Contents/MacOS/NotificationCenter
    0  1175     1   0 21Dec24 ??         0:08.07 /System/Library/PrivateFrameworks/CloudKitDaemon.framework/Support/cloudd --system
  504  1176     1   0 21Dec24 ??         0:00.08 /System/Library/Frameworks/Metal.framework/Versions/A/XPCServices/MTLCompilerService.xpc/Contents/MacOS/MTLCompilerService
  504  1177     1   0 21Dec24 ??         0:00.09 /System/Library/Frameworks/Metal.framework/Versions/A/XPCServices/MTLCompilerService.xpc/Contents/MacOS/MTLCompilerService
  504  1178     1   0 21Dec24 ??         0:03.47 /usr/libexec/fmfd
    0  1179     1   0 21Dec24 ??         0:37.56 /System/Library/PrivateFrameworks/TVIdleServices.framework/idleassetsd
  504  1180     1   0 21Dec24 ??         0:00.89 /System/Library/PrivateFrameworks/ProtectedCloudStorage.framework/Helpers/ProtectedCloudKeySyncing
  504  1181     1   0 21Dec24 ??         0:01.58 /System/Library/CoreServices/Keychain Circle Notification.app/Contents/MacOS/Keychain Circle Notification
  504  1185     1   0 21Dec24 ??         0:05.89 /System/Library/PrivateFrameworks/StatusKit.framework/StatusKitAgent
  504  1186     1   0 21Dec24 ??         0:02.54 /System/Library/PrivateFrameworks/AssetCacheServices.framework/Versions/A/XPCServices/AssetCacheLocatorService.xpc/Contents/MacOS/AssetCacheLocatorService -a
  504  1188     1   0 21Dec24 ??         2:07.53 /System/Library/PrivateFrameworks/ChronoCore.framework/Support/chronod
  504  1189     1   0 21Dec24 ??         0:11.83 /System/Library/CoreServices/UIKitSystem.app/Contents/MacOS/UIKitSystem system_app_start
  504  1190     1   0 21Dec24 ??         0:00.34 /System/Library/Frameworks/ClassKit.framework/Versions/A/progressd
  504  1191     1   0 21Dec24 ??         0:01.09 /System/Library/Frameworks/Speech.framework/Versions/A/XPCServices/localspeechrecognition.xpc/Contents/MacOS/localspeechrecognition
  268  1192     1   0 21Dec24 ??         2:16.48 /usr/libexec/nearbyd
  504  1195     1   0 21Dec24 ??         1:09.42 /System/Library/PrivateFrameworks/IMCore.framework/imagent.app/Contents/MacOS/imagent
  504  1196     1   0 21Dec24 ??         0:00.30 /System/Library/PrivateFrameworks/TelephonyUtilities.framework/XPCServices/com.apple.FaceTime.FTConversationService.xpc/Contents/MacOS/com.apple.FaceTime.FTConversationService
  235  1198     1   0 21Dec24 ??         0:00.23 /usr/libexec/AssetCache/AssetCache
  504  1199     1   0 21Dec24 ??         1:05.96 /System/Library/PrivateFrameworks/IMDPersistence.framework/XPCServices/IMDPersistenceAgent.xpc/Contents/MacOS/IMDPersistenceAgent
  235  1200     1   0 21Dec24 ??         0:01.92 /System/Library/PrivateFrameworks/AssetCacheServices.framework/Versions/A/XPCServices/AssetCacheLocatorService.xpc/Contents/MacOS/AssetCacheLocatorService -d
  504  1201     1   0 21Dec24 ??         0:02.70 /System/Library/PrivateFrameworks/ContextKit.framework/Versions/A/XPCServices/ContextService.xpc/Contents/MacOS/ContextService
  504  1202     1   0 21Dec24 ??        11:29.02 /System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/corespotlightd
    0  1203   808   0 21Dec24 ??         4:54.13 /Library/FireEye/xagt/xagt.app/Contents/MacOS/xagt --mode Eventor --iofd 3 --cmname B4A4E640-3F70-4242-A181-46D1978EB8E3 --log INFO --logfd 4
  265  1221     1   0 21Dec24 ??         0:05.19 /System/Library/PrivateFrameworks/CoreADI.framework/adid
    0  1223   808   0 21Dec24 ??        10:55.04 /Library/FireEye/xagt/xagt.app/Contents/MacOS/xagt --mode MalwareProtection --iofd 3 --cmname B4A4E640-3F70-4242-A181-46D1978EB8E3 --log INFO --logfd 4
    0  1224   808   0 21Dec24 ??         0:00.74 /Library/FireEye/xagt/xagt.app/Contents/MacOS/xagt --mode ProRemSvc --iofd 3 --cmname B4A4E640-3F70-4242-A181-46D1978EB8E3 --log INFO --logfd 4
  504  1225     1   0 21Dec24 ??         0:00.02 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryServices.framework/Versions/A/XPCServices/com.apple.DictionaryServiceHelper.xpc/Contents/MacOS/com.apple.DictionaryServiceHelper
  504  1226     1   0 21Dec24 ??         0:00.33 /System/Library/PrivateFrameworks/MediaRemote.framework/Support/mediaremoteagent
  504  1227     1   0 21Dec24 ??         0:03.35 /usr/libexec/keyboardservicesd
  504  1233     1   0 21Dec24 ??        35:04.67 /usr/libexec/avconferenced
  504  1234     1   0 21Dec24 ??         1:16.44 /usr/libexec/milod
  504  1239     1   0 21Dec24 ??         0:25.94 /System/Library/PrivateFrameworks/UserActivity.framework/Agents/useractivityd
  504  1241     1   0 21Dec24 ??         0:13.71 /usr/libexec/bluetoothuserd
  504  1257     1   0 21Dec24 ??         0:13.71 /System/Library/PrivateFrameworks/CloudTelemetry.framework/Versions/A/XPCServices/CloudTelemetryService.xpc/Contents/MacOS/CloudTelemetryService
  504  1271     1   0 21Dec24 ??         0:00.01 /System/Library/PrivateFrameworks/WiFiPolicy.framework/XPCServices/WiFiCloudAssetsXPCService.xpc/Contents/MacOS/WiFiCloudAssetsXPCService
  504  1276     1   0 21Dec24 ??         0:01.38 /System/Library/PrivateFrameworks/CallHistory.framework/Support/CallHistorySyncHelper
  504  1285     1   0 21Dec24 ??         0:00.07 /usr/libexec/seserviced
  504  1329     1   0 21Dec24 ??         1:16.92 /System/Library/PrivateFrameworks/PhotoLibraryServices.framework/Versions/A/Support/photolibraryd
  504  1373     1   0 21Dec24 ??         0:00.07 /System/Library/CoreServices/ReportCrash agent
  504  1504     1   0 21Dec24 ??         0:01.16 /System/Library/CoreServices/ScopedBookmarkAgent
  504  1536     1   0 21Dec24 ??         0:02.05 /System/Library/Frameworks/Metal.framework/Versions/A/XPCServices/MTLCompilerService.xpc/Contents/MacOS/MTLCompilerService
    0  1721     1   0 21Dec24 ??         0:00.07 /System/Library/PrivateFrameworks/AssetCacheServicesExtensions.framework/XPCServices/AssetCacheTetheratorService.xpc/Contents/MacOS/AssetCacheTetheratorService
  504  1800     1   0 12:07PM ??         0:00.32 /System/iOSSupport/System/Library/PrivateFrameworks/HomeEnergyDaemon.framework/Support/homeenergyd
  504  2100     1   0 21Dec24 ??        27:26.69 /System/Library/Frameworks/CoreSpotlight.framework/spotlightknowledged -u
  504  2399     1   0 21Dec24 ??         0:23.97 /System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/mdbulkimport -s mdworker-bundle -c MDSImporterBundleFinder -m com.apple.metadata.mdbulkimport
  504  2402     1   0 Fri02PM ??         0:05.34 /System/Library/PrivateFrameworks/HearingCore.framework/heard
  504  2474     1   0 21Dec24 ??         0:37.24 /System/Library/PrivateFrameworks/ViewBridge.framework/Versions/A/XPCServices/ViewBridgeAuxiliary.xpc/Contents/MacOS/ViewBridgeAuxiliary
    0  2475     1   0 21Dec24 ??         0:04.38 /System/Library/Frameworks/GSS.framework/Helpers/GSSCred
    0  2476     1   0 21Dec24 ??         0:02.74 /System/Library/PrivateFrameworks/AppSSO.framework/Support/AppSSODaemon
    0  2477     1   0 21Dec24 ??         0:06.31 /System/Library/PrivateFrameworks/CacheDelete.framework/deleted_helper
    0  2483     1   0 21Dec24 ??         0:07.86 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices.framework/Versions/A/XPCServices/com.apple.hiservices-xpcservice.xpc/Contents/MacOS/com.apple.hiservices-xpcservice
  504  2484     1   0 21Dec24 ??         0:00.03 /System/Library/Frameworks/AudioToolbox.framework/XPCServices/com.apple.audio.ComponentTagHelper.xpc/Contents/MacOS/com.apple.audio.ComponentTagHelper
  504  2489     1   0 21Dec24 ??         0:00.38 /System/Library/PrivateFrameworks/CloudPhotoServices.framework/Versions/A/XPCServices/com.apple.CloudPhotosConfiguration.xpc/Contents/MacOS/com.apple.CloudPhotosConfiguration
  504  2490     1   0 21Dec24 ??         0:09.31 /System/Library/PrivateFrameworks/GenerativeExperiencesRuntime.framework/Versions/A/generativeexperiencesd
  504  2491     1   0 21Dec24 ??         0:05.08 /System/Library/CoreServices/WallpaperAgent.app/Contents/MacOS/WallpaperAgent
  504  2492     1   0 21Dec24 ??         0:03.05 /usr/libexec/MTLAssetUpgraderD
  504  2493     1   0 21Dec24 ??         0:39.39 /usr/libexec/swcd
  504  2494     1   0 21Dec24 ??         4:34.39 /usr/libexec/duetexpertd
  504  2495     1   0 21Dec24 ??         0:00.40 /System/Library/Frameworks/MediaExtension.framework/Versions/A/Helpers/MENotificationAgent
    0  2499     1   0 21Dec24 ??         0:00.01 /usr/libexec/wallpaperexportd
  504  2500     1   0 21Dec24 ??         0:00.39 /System/Library/Frameworks/Metal.framework/Versions/A/XPCServices/MTLCompilerService.xpc/Contents/MacOS/MTLCompilerService
  504  2505     1   0 21Dec24 ??         0:54.14 /System/Library/PrivateFrameworks/AppleMediaServices.framework/Resources/amsaccountsd
  504  2506     1   0 21Dec24 ??         0:38.18 /System/Library/PrivateFrameworks/AppleMediaServicesUI.framework/amsengagementd
  504  2508     1   0 21Dec24 ??         0:00.95 /System/Library/PrivateFrameworks/IntlPreferences.framework/Support/localizationswitcherd
  504  2509     1   0 21Dec24 ??         0:06.01 /System/Library/Frameworks/ExtensionFoundation.framework/Versions/A/XPCServices/extensionkitservice.xpc/Contents/MacOS/extensionkitservice
  504  2515     1   0 21Dec24 ??         0:00.17 /System/Library/Frameworks/Metal.framework/Versions/A/XPCServices/MTLCompilerService.xpc/Contents/MacOS/MTLCompilerService
  504  2517     1   0 21Dec24 ??         1:45.19 /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framework/Support/fontd
    0  2522     1   0 21Dec24 ??         1:24.16 /usr/libexec/gamepolicyd
    0  2523     1   0 21Dec24 ??         0:18.59 /System/Library/PrivateFrameworks/ViewBridge.framework/Versions/A/XPCServices/ViewBridgeAuxiliary.xpc/Contents/MacOS/ViewBridgeAuxiliary
  504  2528     1   0 21Dec24 ??         0:00.17 /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Resources/storedownloadd
  504  2529     1   0 21Dec24 ??         0:03.23 /System/Library/PrivateFrameworks/PassKitCore.framework/passd
  504  2530     1   0 21Dec24 ??         0:14.94 /System/Library/Frameworks/QuickLookThumbnailing.framework/Support/com.apple.quicklook.ThumbnailsAgent
  504  2531     1   0 21Dec24 ??         0:00.18 /System/Library/PrivateFrameworks/GeoServices.framework/geodMachServiceBridge
  504  2532     1   0 21Dec24 ??         0:24.68 /System/Library/PrivateFrameworks/AppStoreDaemon.framework/Support/appstoreagent
  504  2533     1   0 21Dec24 ??         0:05.38 /System/Library/CoreServices/diagnostics_agent
  504  2534     1   0 21Dec24 ??         0:00.05 /System/Library/PrivateFrameworks/LockdownMode.framework/Versions/A/XPCServices/lockdownmoded
  504  2536     1   0 21Dec24 ??         0:00.01 /System/Library/Frameworks/ExtensionFoundation.framework/Versions/A/XPCServices/extensionkitservice.xpc/Contents/MacOS/extensionkitservice
  504  2538     1   0 21Dec24 ??        27:36.55 /System/Library/ExtensionKit/Extensions/WallpaperVideoExtension.appex/Contents/MacOS/WallpaperVideoExtension
  274  2541     1   0 21Dec24 ??         0:00.05 /System/Library/PrivateFrameworks/InstallCoordination.framework/Support/installcoordinationd
  504  2542     1   0 21Dec24 ??        11:40.67 /System/Library/Frameworks/VideoToolbox.framework/Versions/A/XPCServices/VTDecoderXPCService.xpc/Contents/MacOS/VTDecoderXPCService
  504  2543     1   0 21Dec24 ??         0:00.02 /System/Library/ExtensionKit/Extensions/SoundIntentsExtension.appex/Contents/MacOS/SoundIntentsExtension
    0  2548     1   0 21Dec24 ??         0:45.07 /System/Library/PrivateFrameworks/PackageKit.framework/Resources/installd
  504  2552     1   0 21Dec24 ??         0:07.26 /System/Library/PrivateFrameworks/CascadeSets.framework/Versions/A/XPCServices/SetStoreUpdateService.xpc/Contents/MacOS/SetStoreUpdateService
  504  2556     1   0 21Dec24 ??         0:00.09 /System/Library/Frameworks/Metal.framework/Versions/A/XPCServices/MTLCompilerService.xpc/Contents/MacOS/MTLCompilerService
  504  2561     1   0 21Dec24 ??         0:03.21 /System/Library/PrivateFrameworks/NewsDaemon.framework/newsd
    0  2564     1   0 21Dec24 ??         0:00.03 /System/Library/PrivateFrameworks/AppStoreDaemon.framework/Versions/A/XPCServices/com.apple.AppStoreDaemon.StorePrivilegedODRService.xpc/Contents/MacOS/com.apple.AppStoreDaemon.StorePrivilegedODRService
  504  2571     1   0 21Dec24 ??         0:03.00 /System/Library/PrivateFrameworks/SoftwareUpdate.framework/Resources/SoftwareUpdateNotificationManager.app/Contents/MacOS/SoftwareUpdateNotificationManager
  504  2578     1   0 21Dec24 ??         3:22.13 /System/Library/PrivateFrameworks/DataAccess.framework/Support/dataaccessd
  504  2579     1   0 21Dec24 ??         0:00.13 /System/Library/PrivateFrameworks/AccountsDaemon.framework/XPCServices/com.apple.accounts.dom.xpc/Contents/MacOS/com.apple.accounts.dom
  504  2581     1   0 21Dec24 ??         0:02.49 /usr/libexec/promotedcontentd
  504  2584     1   0 21Dec24 ??         0:02.34 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Support/fontworker
  504  2588     1   0 21Dec24 ??         0:00.26 /System/Volumes/Preboot/Cryptexes/App/System/Applications/Safari.app/Contents/Extensions/SafariWidgetExtension.appex/Contents/MacOS/SafariWidgetExtension
  504  2592     1   0 21Dec24 ??         0:38.16 /System/Library/PrivateFrameworks/PhotoAnalysis.framework/Versions/A/Support/photoanalysisd
  504  2596     1   0 21Dec24 ??         0:13.62 /System/Library/PrivateFrameworks/People.framework/peopled
  504  2597     1   0 21Dec24 ??         0:08.26 /usr/libexec/proactived
  504  2600     1   0 21Dec24 ??         0:04.38 /usr/libexec/swtransparencyd
  504  2629     1   0 21Dec24 ??         0:00.19 /System/Library/PrivateFrameworks/Categories.framework/Versions/A/XPCServices/CategoriesService.xpc/Contents/MacOS/CategoriesService
  504  2630     1   0 21Dec24 ??         0:03.29 /System/Library/PrivateFrameworks/CloudTelemetry.framework/Versions/A/XPCServices/CloudTelemetryService.xpc/Contents/MacOS/CloudTelemetryService
  504  2646     1   0 21Dec24 ??         0:02.28 cloudphotod
    0  2708     1   0 21Dec24 ??         0:00.03 /System/Library/CoreServices/CrashReporterSupportHelper server-init
  504  2735     1   0 21Dec24 ??         0:00.15 /System/Library/PrivateFrameworks/MacinTalk.framework/Versions/A/PlugIns/WardaSynthesizer_x86_64.appex/Contents/MacOS/WardaSynthesizer_x86_64 -AppleLanguages ("en-US", "zh-Hans-US", "zh-Hant-US")
  504  2737     1   0 21Dec24 ??         0:00.05 /System/Library/PrivateFrameworks/TextToSpeechMauiSupport.framework/Versions/A/PlugIns/MauiAUSP.appex/Contents/MacOS/MauiAUSP -AppleLanguages ("en-US", "zh-Hans-US", "zh-Hant-US")
  504  2738     1   0 21Dec24 ??         0:00.05 /System/Library/PrivateFrameworks/MacinTalk.framework/Versions/A/PlugIns/MacinTalkAUSP.appex/Contents/MacOS/MacinTalkAUSP -AppleLanguages ("en-US", "zh-Hans-US", "zh-Hant-US")
  504  2739     1   0 21Dec24 ??         0:00.02 /System/Library/PrivateFrameworks/TextToSpeech.framework/PlugIns/SiriAUSP.appex/Contents/MacOS/SiriAUSP -AppleLanguages ("en-US", "zh-Hans-US", "zh-Hant-US")
  504  2741     1   0 21Dec24 ??         0:00.02 /System/Library/PrivateFrameworks/TextToSpeechKonaSupport.framework/Versions/A/PlugIns/KonaSynthesizer.appex/Contents/MacOS/KonaSynthesizer -AppleLanguages ("en-US", "zh-Hans-US", "zh-Hant-US")
  504  2742     1   0 21Dec24 ??         0:00.04 /System/Library/PrivateFrameworks/MacinTalk.framework/Versions/A/PlugIns/WardaSynthesizer_arm64.appex/Contents/MacOS/WardaSynthesizer_arm64 -AppleLanguages ("en-US", "zh-Hans-US", "zh-Hant-US")
  504  2746     1   0 21Dec24 ??         0:00.02 /System/Library/Frameworks/AudioToolbox.framework/XPCServices/com.apple.audio.SandboxHelper.xpc/Contents/MacOS/com.apple.audio.SandboxHelper
  504  2747     1   0 21Dec24 ??         0:00.02 /System/Library/Frameworks/AudioToolbox.framework/XPCServices/com.apple.audio.SandboxHelper.xpc/Contents/MacOS/com.apple.audio.SandboxHelper
  504  2752     1   0 21Dec24 ??         0:00.36 /System/Library/PrivateFrameworks/SiriTTSService.framework/Versions/A/XPCServices/com.apple.SiriTTSService.TrialProxy.xpc/Contents/MacOS/com.apple.SiriTTSService.TrialProxy
  504  2756     1   0 21Dec24 ??         0:00.02 /System/Library/Frameworks/AudioToolbox.framework/XPCServices/com.apple.audio.SandboxHelper.xpc/Contents/MacOS/com.apple.audio.SandboxHelper
  504  2757     1   0 21Dec24 ??         0:00.02 /System/Library/Frameworks/AudioToolbox.framework/XPCServices/com.apple.audio.SandboxHelper.xpc/Contents/MacOS/com.apple.audio.SandboxHelper
  504  2758     1   0 21Dec24 ??         0:00.02 /System/Library/Frameworks/AudioToolbox.framework/XPCServices/com.apple.audio.SandboxHelper.xpc/Contents/MacOS/com.apple.audio.SandboxHelper
  504  2759     1   0 21Dec24 ??         0:00.02 /System/Library/Frameworks/AudioToolbox.framework/XPCServices/com.apple.audio.SandboxHelper.xpc/Contents/MacOS/com.apple.audio.SandboxHelper
  504  2760     1   0 21Dec24 ??         0:00.36 /System/Library/PrivateFrameworks/SiriTTSService.framework/Versions/A/XPCServices/com.apple.SiriTTSService.TrialProxy.xpc/Contents/MacOS/com.apple.SiriTTSService.TrialProxy
  504  2767     1   0 21Dec24 ??         0:01.25 /System/Library/PrivateFrameworks/TextToSpeechVoiceBankingSupport.framework/Support/voicebankingd
  504  2773     1   0 Fri02PM ??         1:48.60 /Applications/Cisco/Cisco Secure Client.app/Contents/MacOS/Cisco Secure Client
  504  2787     1   0 Fri02PM ??         0:14.97 /System/Library/PrivateFrameworks/SafariPlatformSupport.framework/Versions/A/XPCServices/com.apple.SafariPlatformSupport.Helper.xpc/Contents/MacOS/com.apple.SafariPlatformSupport.Helper
  504  2788     1   0 Fri02PM ??         0:01.61 /System/Library/Frameworks/WebKit.framework/Versions/A/XPCServices/com.apple.WebKit.GPU.xpc/Contents/MacOS/com.apple.WebKit.GPU
  504  2792     1   0 Fri02PM ??         0:00.02 /System/Library/Frameworks/AudioToolbox.framework/XPCServices/com.apple.audio.SandboxHelper.xpc/Contents/MacOS/com.apple.audio.SandboxHelper
  504  2806     1   0 Fri02PM ??         0:00.04 /System/Library/Frameworks/Metal.framework/Versions/A/XPCServices/MTLCompilerService.xpc/Contents/MacOS/MTLCompilerService
  504  2809     1   0 21Dec24 ??         0:07.08 /System/Library/PrivateFrameworks/SiriAnalytics.framework/Versions/A/XPCServices/SAExtensionOrchestrator.xpc/Contents/MacOS/SAExtensionOrchestrator
  504  2815     1   0 21Dec24 ??         1:45.15 /System/Library/PrivateFrameworks/IntelligencePlatformCompute.framework/Versions/A/XPCServices/IntelligencePlatformComputeService.xpc/Contents/MacOS/IntelligencePlatformComputeService
  504  2816     1   0 21Dec24 ??         0:00.08 /System/Library/Frameworks/ExtensionFoundation.framework/Versions/A/XPCServices/extensionkitservice.xpc/Contents/MacOS/extensionkitservice
  504  2817     1   0 21Dec24 ??         0:00.30 /System/Library/ExtensionKit/Extensions/IFTelemetrySELFIngestor.appex/Contents/MacOS/IFTelemetrySELFIngestor
  504  2818     1   0 21Dec24 ??         0:00.43 /System/Library/ExtensionKit/Extensions/IFTranscriptSELFIngestor.appex/Contents/MacOS/IFTranscriptSELFIngestor
  504  2820     1   0 21Dec24 ??         0:02.26 /System/Library/ExtensionKit/Extensions/GMSSELFIngestor.appex/Contents/MacOS/GMSSELFIngestor
  504  2821     1   0 21Dec24 ??         0:00.42 /System/Library/ExtensionKit/Extensions/BiomeSELFIngestor.appex/Contents/MacOS/BiomeSELFIngestor
    0  2822     1   0 21Dec24 ??         0:05.94 /usr/libexec/triald_system
  242  2834     1   0 21Dec24 ??         0:10.81 /System/Library/PrivateFrameworks/StreamingZip.framework/Versions/A/XPCServices/com.apple.StreamingUnzipService.privileged.xpc/Contents/MacOS/com.apple.StreamingUnzipService.privileged
  242  2835     1   0 21Dec24 ??         1:57.25 /System/Library/PrivateFrameworks/StreamingExtractor.framework/Versions/A/XPCServices/STExtractionService.privileged.xpc/Contents/MacOS/STExtractionService.privileged
  504  2837     1   0 21Dec24 ??         2:32.72 /usr/libexec/searchpartyuseragent
  504  2849     1   0 21Dec24 ??         0:00.01 /System/Library/Frameworks/Intents.framework/XPCServices/intents_helper.xpc/Contents/MacOS/intents_helper
  504  2851     1   0 21Dec24 ??         0:00.08 /System/Library/PrivateFrameworks/MobileTimer.framework/PlugIns/MobileTimerIntents.appex/Contents/MacOS/MobileTimerIntents -AppleLanguages ("en-US", "zh-Hans-US", "zh-Hant-US")
  504  2853     1   0 21Dec24 ??         0:00.02 /System/Library/PrivateFrameworks/CalendarWidget.framework/PlugIns/IntentsExtension.appex/Contents/MacOS/IntentsExtension -AppleLanguages ("en-US", "zh-Hans-US", "zh-Hant-US")
  504  2873     1   0 21Dec24 ??         0:00.04 /System/Library/Frameworks/ExtensionFoundation.framework/Versions/A/XPCServices/extensionkitservice.xpc/Contents/MacOS/extensionkitservice
  504  2874     1   0 21Dec24 ??         0:00.04 /System/Applications/Calendar.app/Contents/Extensions/CalendarIntentsExtension.appex/Contents/MacOS/CalendarIntentsExtension
  504  2877     1   0 21Dec24 ??         0:00.06 /System/Volumes/Preboot/Cryptexes/App/System/Applications/Safari.app/Contents/Extensions/SafariLinkExtension.appex/Contents/MacOS/SafariLinkExtension
  504  2878     1   0 21Dec24 ??         0:00.41 /usr/libexec/diagnosticextensionsd
  504  2882     1   0 21Dec24 ??         0:00.05 /System/Applications/Messages.app/Contents/Extensions/MessagesActionExtension.appex/Contents/MacOS/MessagesActionExtension
  504  2902     1   0 21Dec24 ??         0:25.01 /System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/mdworker -s mdworker-sizing -c MDSSizingWorker -m com.apple.mdworker.sizing
  265  2910     1   0 21Dec24 ??         0:00.18 /System/Library/PrivateFrameworks/CoreFP.framework/Versions/A/fairplayd
  504  2911     1   0 21Dec24 ??         0:00.06 /System/Library/PrivateFrameworks/AMPLibrary.framework/Versions/A/Support/AMPArtworkAgent --launchd
  504  2912     1   0 21Dec24 ??         0:00.02 /System/Library/Frameworks/NetFS.framework/Versions/A/XPCServices/PlugInLibraryService.xpc/Contents/MacOS/PlugInLibraryService
  504  3026     1   0 21Dec24 ??         0:00.85 /System/Library/PrivateFrameworks/AvatarPersistence.framework/Support/avatarsd
  504  3033     1   0 21Dec24 ??         0:20.15 /System/Library/PrivateFrameworks/AppPredictionFoundation.framework/Versions/A/XPCServices/AppPredictionIntentsHelperService.xpc/Contents/MacOS/AppPredictionIntentsHelperService
    0  3051     1   0 21Dec24 ??         0:26.13 /System/Library/PrivateFrameworks/AppleNeuralEngine.framework/XPCServices/ANECompilerService.xpc/Contents/MacOS/ANECompilerService
    0  3063     1   0 21Dec24 ??         0:00.06 /System/Library/PrivateFrameworks/PerfPowerServicesReader.framework/Versions/A/XPCServices/PerfPowerTelemetryReaderService.xpc/Contents/MacOS/PerfPowerTelemetryReaderService
  504  3064     1   0 21Dec24 ??         0:14.62 /System/Library/PrivateFrameworks/CoreParsec.framework/parsecd
  504  3065     1   0 21Dec24 ??         0:05.62 /System/Library/PrivateFrameworks/iTunesCloud.framework/Support/itunescloudd
  504  3072     1   0 21Dec24 ??         0:13.03 /usr/libexec/tipsd
  504  3079     1   0 21Dec24 ??         0:07.96 /System/Library/PrivateFrameworks/AppStoreComponents.framework/Support/appstorecomponentsd
  504  3082     1   0 21Dec24 ??         0:01.17 /System/Cryptexes/App/System/Library/CoreServices/SafariSupport.bundle/Contents/MacOS/SafariBookmarksSyncAgent
  277  3083     1   0 21Dec24 ??         0:00.51 /System/Library/PrivateFrameworks/RemoteManagement.framework/remotemanagementd
  277  3084     1   0 21Dec24 ??         0:00.06 /System/Library/PrivateFrameworks/RemoteManagement.framework/XPCServices/SecuritySubscriber.xpc/Contents/MacOS/SecuritySubscriber
  277  3086     1   0 21Dec24 ??         1:53.93 /usr/sbin/distnoted agent
  277  3088     1   0 21Dec24 ??         0:00.08 /System/Library/PrivateFrameworks/RemoteManagement.framework/XPCServices/InteractiveLegacyProfilesSubscriber.xpc/Contents/MacOS/InteractiveLegacyProfilesSubscriber
  277  3089     1   0 21Dec24 ??         0:00.07 /System/Library/PrivateFrameworks/RemoteManagement.framework/XPCServices/ScreenSharingSubscriber.xpc/Contents/MacOS/ScreenSharingSubscriber
  277  3090     1   0 21Dec24 ??         0:00.08 /System/Library/PrivateFrameworks/RemoteManagement.framework/XPCServices/LegacyProfilesSubscriber.xpc/Contents/MacOS/LegacyProfilesSubscriber
  277  3091     1   0 21Dec24 ??         0:00.08 /System/Library/PrivateFrameworks/RemoteManagement.framework/XPCServices/PasscodeSettingsSubscriber.xpc/Contents/MacOS/PasscodeSettingsSubscriber
  277  3092     1   0 21Dec24 ??         0:00.05 /System/Library/PrivateFrameworks/RemoteManagement.framework/XPCServices/DiskManagementSubscriber.xpc/Contents/MacOS/DiskManagementSubscriber
  277  3093     1   0 21Dec24 ??         0:00.06 /System/Library/PrivateFrameworks/RemoteManagement.framework/XPCServices/SoftwareUpdateSubscriber.xpc/Contents/MacOS/SoftwareUpdateSubscriber
  277  3094     1   0 21Dec24 ??         0:00.06 /System/Library/PrivateFrameworks/RemoteManagement.framework/XPCServices/ManagementTestSubscriber.xpc/Contents/MacOS/ManagementTestSubscriber
  277  3095     1   0 21Dec24 ??         0:00.06 /System/Library/PrivateFrameworks/RemoteManagement.framework/XPCServices/ManagedConfigurationFilesSubscriber.xpc/Contents/MacOS/ManagedConfigurationFilesSubscriber
  265  3114     1   0 21Dec24 ??         0:00.18 /usr/libexec/fairplaydeviceidentityd
    0  3191     1   0 Fri02PM ??         0:00.61 /Library/Application Support/QualysCloudAgent/AppTools/agentid-service -config /Library/Application Support/QualysCloudAgent/Config/agentid-service.conf -logdir /var/log/qualys/
  247  3351     1   0 21Dec24 ??         0:00.14 /System/Library/PrivateFrameworks/GameControllerFoundation.framework/Versions/A/XPCServices/GameControllerConfigService.xpc/Contents/MacOS/GameControllerConfigService
  504  3423     1   0 21Dec24 ??         0:00.84 /System/Library/Frameworks/CoreGraphics.framework/Versions/A/XPCServices/CGPDFService.xpc/Contents/MacOS/CGPDFService
  504  3424     1   0 21Dec24 ??         0:00.44 /System/Library/Frameworks/ExtensionFoundation.framework/Versions/A/XPCServices/extensionkitservice.xpc/Contents/MacOS/extensionkitservice
  504  3425     1   0 21Dec24 ??         0:03.14 /System/Library/ExtensionKit/Extensions/ImageThumbnailExtension.appex/Contents/MacOS/ImageThumbnailExtension
  504  3426     1   0 21Dec24 ??         0:00.39 /System/Library/ExtensionKit/Extensions/OfficeThumbnailExtension.appex/Contents/MacOS/OfficeThumbnailExtension
  504  3427     1   0 21Dec24 ??         0:00.68 /System/Library/ExtensionKit/Extensions/WebThumbnailExtension.appex/Contents/MacOS/WebThumbnailExtension
  504  3428     1   0 21Dec24 ??         0:00.58 /System/Library/Frameworks/WebKit.framework/Versions/A/XPCServices/com.apple.WebKit.GPU.xpc/Contents/MacOS/com.apple.WebKit.GPU
  504  3431     1   0 21Dec24 ??         0:00.05 /System/Library/Frameworks/AudioToolbox.framework/XPCServices/com.apple.audio.SandboxHelper.xpc/Contents/MacOS/com.apple.audio.SandboxHelper
  504  3432     1   0 21Dec24 ??         0:00.15 /System/Library/Frameworks/QuickLook.framework/Versions/A/XPCServices/QuickLookSatellite.xpc/Contents/MacOS/QuickLookSatellite
  504  3434     1   0 21Dec24 ??         0:00.05 /System/Library/Frameworks/Metal.framework/Versions/A/XPCServices/MTLCompilerService.xpc/Contents/MacOS/MTLCompilerService
  504  3435     1   0 21Dec24 ??         0:00.05 /System/Library/Frameworks/Metal.framework/Versions/A/XPCServices/MTLCompilerService.xpc/Contents/MacOS/MTLCompilerService
  504  3444     1   0 21Dec24 ??         0:00.03 /usr/libexec/spindump_agent
  504  3456     1   0 21Dec24 ??         0:04.30 /System/Library/PrivateFrameworks/MapsSync.framework/mapssyncd
    0  3463     1   0 21Dec24 ??         0:02.34 /System/Library/PrivateFrameworks/CloudTelemetry.framework/Versions/A/XPCServices/CloudTelemetryService.xpc/Contents/MacOS/CloudTelemetryService
  504  3480     1   0 21Dec24 ??         0:05.53 /usr/libexec/mlhostd
  504  3481     1   0 21Dec24 ??         0:08.34 /System/Library/Frameworks/ExtensionFoundation.framework/Versions/A/XPCServices/extensionkitservice.xpc/Contents/MacOS/extensionkitservice
  504  3503     1   0 21Dec24 ??         0:00.53 /usr/libexec/backgroundassets.user
    0  3535     1   0 21Dec24 ??         0:00.12 /usr/libexec/ASPCarryLog
  504  3555     1   0 21Dec24 ??         0:01.70 /usr/libexec/betaenrollmentd
  504  3556     1   0 21Dec24 ??         0:26.56 /System/Cryptexes/App/usr/libexec/PasswordBreachAgent
    0  3559     1   0 21Dec24 ??         0:00.04 /System/Library/CoreServices/Applications/Feedback Assistant.app/Contents/Library/LaunchServices/fbahelperd
    0  3575     1   0 21Dec24 ??         0:00.05 /usr/libexec/griddatad
  504  3576     1   0 21Dec24 ??         0:00.16 /usr/libexec/metrickitd
  504  3577     1   0 21Dec24 ??         0:00.26 /usr/libexec/ciphermld
  504  3642     1   0 21Dec24 ??         0:00.14 /System/Library/PrivateFrameworks/RemoteManagement.framework/RemoteManagementAgent
  504  3644     1   0 21Dec24 ??         0:00.11 /System/Library/PrivateFrameworks/SafariFoundation.framework/Versions/A/XPCServices/SafariConfigurationSubscriber.xpc/Contents/MacOS/SafariConfigurationSubscriber
  504  3645     1   0 21Dec24 ??         0:00.11 /System/Library/PrivateFrameworks/RemoteManagement.framework/XPCServices/SecuritySubscriber.xpc/Contents/MacOS/SecuritySubscriber
  504  3646     1   0 21Dec24 ??         0:00.12 /System/Library/PrivateFrameworks/RemoteManagement.framework/XPCServices/InteractiveLegacyProfilesSubscriber.xpc/Contents/MacOS/InteractiveLegacyProfilesSubscriber
  504  3648     1   0 21Dec24 ??         0:00.08 /System/Library/PrivateFrameworks/RemoteManagement.framework/XPCServices/ScreenSharingSubscriber.xpc/Contents/MacOS/ScreenSharingSubscriber
  504  3651     1   0 21Dec24 ??         0:00.15 /System/Library/PrivateFrameworks/RemoteManagement.framework/XPCServices/MathSettingsSubscriber.xpc/Contents/MacOS/MathSettingsSubscriber
  504  3652     1   0 21Dec24 ??         0:00.09 /System/Library/PrivateFrameworks/RemoteManagement.framework/XPCServices/LegacyProfilesSubscriber.xpc/Contents/MacOS/LegacyProfilesSubscriber
  504  3653     1   0 21Dec24 ??         0:00.14 /System/Library/PrivateFrameworks/RemoteManagement.framework/XPCServices/PasscodeSettingsSubscriber.xpc/Contents/MacOS/PasscodeSettingsSubscriber
  504  3654     1   0 21Dec24 ??         0:00.17 /System/Library/PrivateFrameworks/RemoteManagement.framework/XPCServices/AccountSubscriber.xpc/Contents/MacOS/AccountSubscriber
  504  3655     1   0 21Dec24 ??         0:00.10 /System/Library/PrivateFrameworks/RemoteManagement.framework/XPCServices/ManagementTestSubscriber.xpc/Contents/MacOS/ManagementTestSubscriber
  504  3656     1   0 21Dec24 ??         0:00.09 /System/Library/PrivateFrameworks/RemoteManagement.framework/XPCServices/ASConfigurationSubscriber.xpc/Contents/MacOS/ASConfigurationSubscriber
    0  3674     1   0 21Dec24 ??         0:00.40 /usr/libexec/dprivacyd
  504  3675     1   0 21Dec24 ??         0:02.50 /usr/libexec/proactiveeventtrackerd
    0  3688     1   0 21Dec24 ??         0:00.64 /usr/libexec/mmaintenanced
    0  3731     1   0 21Dec24 ??         0:00.04 /usr/libexec/sysdiagnosed
  504  3759     1   0 21Dec24 ??         0:00.74 /System/Library/PrivateFrameworks/CoreRecents.framework/Versions/A/Support/recentsd
  302  3767     1   0 21Dec24 ??         0:00.06 /System/Library/CoreServices/ReportSystemMemory
  504  3774     1   0 21Dec24 ??         0:03.26 /System/Library/Frameworks/Speech.framework/Versions/A/XPCServices/localspeechrecognition.xpc/Contents/MacOS/localspeechrecognition
    0  3787     1   0 21Dec24 ??         0:00.29 /System/Library/PrivateFrameworks/AppleNeuralEngine.framework/XPCServices/ANEStorageMaintainer.xpc/Contents/MacOS/ANEStorageMaintainer
  504  3804     1   0 21Dec24 ??         0:00.54 /System/Library/PrivateFrameworks/AssistantServices.framework/Versions/A/XPCServices/media-indexer.xpc/Contents/MacOS/media-indexer
  296  3805     1   0 21Dec24 ??         0:00.03 /System/Library/PrivateFrameworks/AppleNeuralEngine.framework/XPCServices/ANEStorageMaintainer.xpc/Contents/MacOS/ANEStorageMaintainer
  296  3806     1   0 21Dec24 ??         1:56.91 /usr/sbin/distnoted agent
  504  3807     1   0 21Dec24 ??         0:05.16 /System/Library/PrivateFrameworks/AMPLibrary.framework/Versions/A/Support/AMPLibraryAgent --launchd
  504  3808     1   0 21Dec24 ??         0:00.06 /System/Library/PrivateFrameworks/PodcastServices.framework/XPCServices/PodcastContentService.xpc/Contents/MacOS/PodcastContentService
  504  3809     1   0 21Dec24 ??         0:00.08 /System/Library/PrivateFrameworks/BookKit.framework/Versions/A/XPCServices/com.apple.BKAgentService.xpc/Contents/MacOS/com.apple.BKAgentService
  504  3851     1   0 21Dec24 ??         0:19.07 /System/Library/PrivateFrameworks/ContactsDonation.framework/Versions/A/Support/contactsdonationagent
  504  3869     1   0 21Dec24 ??         0:00.07 /usr/libexec/mlruntimed
  504  3873     1   0 21Dec24 ??         0:54.44 /System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/mdwrite
  501  3875     1   0 21Dec24 ??         2:24.56 /usr/sbin/distnoted agent
  504  3877     1   0 21Dec24 ??         0:00.21 /System/Library/Frameworks/CoreSpotlight.framework/spotlightknowledged -x
  501  3878     1   0 21Dec24 ??         0:02.84 /System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/mdbulkimport -s mdworker-bundle -c MDSImporterBundleFinder -m com.apple.metadata.mdbulkimport
  503  3880     1   0 21Dec24 ??         2:27.17 /usr/sbin/distnoted agent
  501  3881     1   0 21Dec24 ??         0:00.54 /usr/sbin/cfprefsd agent
  501  3883     1   0 21Dec24 ??         0:41.17 /usr/libexec/lsd
  501  3884     1   0 21Dec24 ??         0:06.58 /usr/libexec/pkd
  501  3887     1   0 21Dec24 ??         0:00.02 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/XPCServices/csnameddatad.xpc/Contents/MacOS/csnameddatad
  503  3890     1   0 21Dec24 ??         0:02.70 /System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/mdbulkimport -s mdworker-bundle -c MDSImporterBundleFinder -m com.apple.metadata.mdbulkimport
  503  3892     1   0 21Dec24 ??         0:00.60 /usr/sbin/cfprefsd agent
  503  3897     1   0 21Dec24 ??         0:40.43 /usr/libexec/lsd
  503  3898     1   0 21Dec24 ??         0:06.80 /usr/libexec/pkd
  503  3903     1   0 21Dec24 ??         0:00.02 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/XPCServices/csnameddatad.xpc/Contents/MacOS/csnameddatad
  503  3979     1   0 21Dec24 ??         0:00.37 /usr/libexec/secd
  501  3980     1   0 21Dec24 ??         0:00.37 /usr/libexec/secd
  504  4066     1   0 21Dec24 ??         0:01.30 /System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/managedcorespotlightd
    0  4335     1   0 21Dec24 ??         0:00.08 /System/Library/PrivateFrameworks/MobileAsset.framework/Versions/A/XPCServices/ManifestStorageService.xpc/Contents/MacOS/ManifestStorageService
    0  4425     1   0 21Dec24 ??         0:00.09 /Library/Apple/System/Library/CoreServices/XProtect.app/Contents/MacOS/XProtect
  503  4482     1   0 21Dec24 ??         0:06.09 /usr/libexec/trustd --agent
  501  4483     1   0 21Dec24 ??         0:06.04 /usr/libexec/trustd --agent
  504  4534     1   0 21Dec24 ??         4:36.25 /usr/libexec/trustd --agent
  504  4811     1   0 Sun12PM ??         0:11.33 /System/Applications/Preview.app/Contents/MacOS/Preview
  504  4812     1   0 Sun12PM ??         0:00.12 /System/Library/Frameworks/Metal.framework/Versions/A/XPCServices/MTLCompilerService.xpc/Contents/MacOS/MTLCompilerService
  504  4813     1   0 Sun12PM ??         0:00.06 /System/Library/Frameworks/Metal.framework/Versions/A/XPCServices/MTLCompilerService.xpc/Contents/MacOS/MTLCompilerService
  504  4814     1   0 Sun12PM ??         0:00.04 /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/XPCServices/mscamerad-xpc.xpc/Contents/MacOS/mscamerad-xpc
  504  4815     1   0 Sun12PM ??         0:07.97 /usr/libexec/ptpcamerad
  504  4816     1   0 Sun12PM ??         0:06.17 /System/Library/Frameworks/AppKit.framework/Versions/C/XPCServices/com.apple.appkit.xpc.openAndSavePanelService.xpc/Contents/MacOS/com.apple.appkit.xpc.openAndSavePanelService
  504  4817     1   0 Sun12PM ??         0:02.45 /System/Library/Frameworks/QuickLookUI.framework/Versions/A/XPCServices/QuickLookUIService.xpc/Contents/MacOS/QuickLookUIService
  504  4819     1   0 Sun12PM ??         0:02.08 /Applications/Utilities/Adobe Sync/CoreSync/Core Sync.app/Contents/PlugIns/ACCFinderSync.appex/Contents/MacOS/ACCFinderSync -AppleLanguages ("en", "en-US", "zh-Hans-US", "zh-Hant-US")
  501  4829     1   0 21Dec24 ??         0:00.15 /usr/libexec/containermanagerd --runmode=agent --user-container-mode=current --bundle-container-mode=proxy --system-container-mode=none
  503  4830     1   0 21Dec24 ??         0:00.12 /usr/libexec/containermanagerd --runmode=agent --user-container-mode=current --bundle-container-mode=proxy --system-container-mode=none
  504  4854     1   0 Sun12PM ??         2:24.81 /System/Library/Input Methods/SCIM.app/Contents/PlugIns/SCIM_Extension.appex/Contents/MacOS/SCIM_Extension -AppleLanguages ("en-US", "zh-Hans-US", "zh-Hant-US")
  504  4868     1   0 21Dec24 ??         0:01.49 /System/Applications/Calendar.app/Contents/PlugIns/CalendarWidgetExtension.appex/Contents/MacOS/CalendarWidgetExtension
  504  4890     1   0 21Dec24 ??         0:12.24 /System/Applications/Clock.app/Contents/PlugIns/WorldClockWidget.appex/Contents/MacOS/WorldClockWidget
  504  4903     1   0 21Dec24 ??         0:00.03 /System/Applications/FindMy.app/Contents/PlugIns/FindMyWidgetItems.appex/Contents/MacOS/FindMyWidgetItems
  504  4904     1   0 21Dec24 ??         0:00.03 /System/Applications/FindMy.app/Contents/PlugIns/FindMyWidgetIntentsItems.appex/Contents/MacOS/FindMyWidgetIntentsItems -AppleLanguages ("en-US", "zh-Hans-US", "zh-Hant-US")
  504  4914     1   0 21Dec24 ??         0:00.04 /System/Applications/FindMy.app/Contents/PlugIns/FindMyWidgetPeople.appex/Contents/MacOS/FindMyWidgetPeople
  504  4917     1   0 21Dec24 ??         0:00.08 /System/Applications/Home.app/Contents/PlugIns/HomeWidget.appex/Contents/MacOS/HomeWidget
  504  4928     1   0 21Dec24 ??         0:00.22 /System/Applications/Home.app/Contents/PlugIns/HomeEnergyWidgetsExtension.appex/Contents/MacOS/HomeEnergyWidgetsExtension
  504  5014     1   0 21Dec24 ??         0:00.08 /System/Applications/News.app/Contents/PlugIns/NewsTag.appex/Contents/MacOS/NewsTag
  504  5015     1   0 21Dec24 ??         0:00.06 /System/Applications/News.app/Contents/PlugIns/NewsTodayIntents.appex/Contents/MacOS/NewsTodayIntents -AppleLanguages ("en-US", "zh-Hans-US", "zh-Hant-US")
  504  5041     1   0 21Dec24 ??         0:00.06 /System/Applications/Notes.app/Contents/PlugIns/com.apple.Notes.IntentsExtension.appex/Contents/MacOS/com.apple.Notes.IntentsExtension -AppleLanguages ("en-US", "zh-Hans-US", "zh-Hant-US")
  504  5192     1   0 Sun12PM ??         0:00.03 /System/Library/Frameworks/Metal.framework/Versions/A/XPCServices/MTLCompilerService.xpc/Contents/MacOS/MTLCompilerService
  504  5193     1   0 Sun12PM ??         0:00.03 /System/Library/Frameworks/Metal.framework/Versions/A/XPCServices/MTLCompilerService.xpc/Contents/MacOS/MTLCompilerService
  504  5270     1   0 21Dec24 ??         0:00.02 /System/Library/CoreServices/Batteries.app/Contents/PlugIns/BatteriesAvocadoWidgetExtension.appex/Contents/MacOS/BatteriesAvocadoWidgetExtension
  504  5362     1   0 21Dec24 ??         0:00.14 /System/Library/CoreServices/PeopleViewService.app/Contents/PlugIns/PeopleWidget_macOSExtension.appex/Contents/MacOS/PeopleWidget_macOSExtension
  504  5363     1   0 21Dec24 ??         0:00.12 /System/Library/CoreServices/PeopleViewService.app/Contents/PlugIns/SelectPerson_iOS.appex/Contents/MacOS/SelectPerson_iOS -AppleLanguages ("en-US", "zh-Hans-US", "zh-Hant-US")
  504  5365     1   0 21Dec24 ??         0:00.03 /System/Library/CoreServices/Screen Time.app/Contents/PlugIns/ScreenTimeWidgetExtension.appex/Contents/MacOS/ScreenTimeWidgetExtension
  504  5368     1   0 21Dec24 ??         0:00.04 /System/Library/CoreServices/Screen Time.app/Contents/PlugIns/ScreenTimeWidgetIntentsExtension.appex/Contents/MacOS/ScreenTimeWidgetIntentsExtension -AppleLanguages ("en-US", "zh-Hans-US", "zh-Hant-US")
  504  5397     1   0 21Dec24 ??         0:00.04 /System/Applications/Photos.app/Contents/PlugIns/PhotosReliveWidget.appex/Contents/MacOS/PhotosReliveWidget
  504  5420     1   0 21Dec24 ??         0:00.20 /System/Applications/Podcasts.app/Contents/PlugIns/PodcastsWidget.appex/Contents/MacOS/PodcastsWidget
  504  5422     1   0 21Dec24 ??         0:00.03 /System/Applications/Reminders.app/Contents/PlugIns/RemindersWidgetExtension.appex/Contents/MacOS/RemindersWidgetExtension
  504  5423     1   0 21Dec24 ??         0:00.05 /System/Applications/Reminders.app/Contents/PlugIns/RemindersIntentsExtension.appex/Contents/MacOS/RemindersIntentsExtension -AppleLanguages ("en-US", "zh-Hans-US", "zh-Hant-US")
  504  5424     1   0 21Dec24 ??         0:00.05 /System/Applications/Shortcuts.app/Contents/PlugIns/ShortcutsWidgetExtension.appex/Contents/MacOS/ShortcutsWidgetExtension
  504  5434     1   0 21Dec24 ??         0:00.01 /System/Library/Frameworks/Intents.framework/XPCServices/intents_helper.xpc/Contents/MacOS/intents_helper
  504  5447     1   0 21Dec24 ??         0:13.49 /System/Applications/System Settings.app/Contents/PlugIns/csimporter.appex/Contents/MacOS/csimporter -AppleLanguages ("en-US", "zh-Hans-US", "zh-Hant-US")
  504  5453     1   0 21Dec24 ??         0:00.02 /System/Applications/Tips.app/Contents/PlugIns/TipsWidgetExtension.appex/Contents/MacOS/TipsWidgetExtension
  504  5509     1   0 21Dec24 ??         0:28.88 /System/Applications/Weather.app/Contents/PlugIns/WeatherWidget.appex/Contents/MacOS/WeatherWidget
  504  5510     1   0 21Dec24 ??         0:00.02 /System/Applications/VoiceMemos.app/Contents/PlugIns/VoiceMemosSettingsWidgetExtension.appex/Contents/MacOS/VoiceMemosSettingsWidgetExtension
  504  5535     1   0 21Dec24 ??         0:00.04 /System/Applications/Weather.app/Contents/PlugIns/WeatherIntents.appex/Contents/MacOS/WeatherIntents -AppleLanguages ("en-US", "zh-Hans-US", "zh-Hant-US")
  504  5582     1   0 Tue06PM ??         0:00.97 /System/Library/PrivateFrameworks/MediaConversionService.framework/Versions/A/XPCServices/com.apple.photos.ImageConversionService.xpc/Contents/MacOS/com.apple.photos.ImageConversionService
  504  5583     1   0 Tue06PM ??         0:00.70 /System/Library/PrivateFrameworks/MessagesBlastDoorSupport.framework/Versions/A/XPCServices/MessagesBlastDoorService.xpc/Contents/MacOS/MessagesBlastDoorService
  504  5590     1   0 Tue06PM ??         0:00.09 /System/Library/Frameworks/AudioToolbox.framework/XPCServices/com.apple.audio.SandboxHelper.xpc/Contents/MacOS/com.apple.audio.SandboxHelper
  504  5822     1   0 Fri02PM ??         0:00.03 /System/Library/Frameworks/Metal.framework/Versions/A/XPCServices/MTLCompilerService.xpc/Contents/MacOS/MTLCompilerService
  504  5823     1   0 Fri02PM ??         0:00.03 /System/Library/Frameworks/Metal.framework/Versions/A/XPCServices/MTLCompilerService.xpc/Contents/MacOS/MTLCompilerService
    0  5875     1   0 21Dec24 ??         0:00.02 /System/Library/Frameworks/Metal.framework/Versions/A/XPCServices/MTLCompilerService.xpc/Contents/MacOS/MTLCompilerService
    0  5876     1   0 21Dec24 ??         0:00.02 /System/Library/Frameworks/Metal.framework/Versions/A/XPCServices/MTLCompilerService.xpc/Contents/MacOS/MTLCompilerService
    0  5878     1   0 21Dec24 ??         0:00.10 /System/Library/Frameworks/CryptoTokenKit.framework/ctkahp.bundle/Contents/MacOS/ctkahp -d
  504  5879     1   0 21Dec24 ??         0:00.48 /System/Library/Frameworks/InputMethodKit.framework/Resources/imklaunchagent
  504  5880     1   0 21Dec24 ??         1:21.65 /System/Library/PrivateFrameworks/TextInputUIMacHelper.framework/Versions/A/XPCServices/CursorUIViewService.xpc/Contents/MacOS/CursorUIViewService
  504  5881     1   0 21Dec24 ??         0:10.20 /System/Library/CoreServices/TextInputSwitcher.app/Contents/MacOS/TextInputSwitcher
  504  5882     1   0 21Dec24 ??         0:00.08 /System/Library/Frameworks/CryptoTokenKit.framework/ctkahp.bundle/Contents/MacOS/ctkahp
  504  5884     1   0 21Dec24 ??         0:07.91 /System/Library/Input Methods/PressAndHold.app/Contents/PlugIns/PAH_Extension.appex/Contents/MacOS/PAH_Extension -AppleLanguages ("en-US", "zh-Hans-US", "zh-Hant-US")
  504  5890     1   0 21Dec24 ??         0:04.11 /System/Cryptexes/App/usr/libexec/AuthenticationServicesAgent
  504  5891     1   0 21Dec24 ??         0:00.38 /usr/libexec/keychainsharingmessagingd
  278  5892     1   0 21Dec24 ??         0:13.12 /System/Library/PrivateFrameworks/MobileAccessoryUpdater.framework/Support/accessoryupdaterd 120
  278  5893     1   0 21Dec24 ??         0:00.40 /System/Library/PrivateFrameworks/MobileAccessoryUpdater.framework/XPCServices/UARPUpdaterServiceLegacyAudio.xpc/Contents/MacOS/UARPUpdaterServiceLegacyAudio
  504  5912     1   0 21Dec24 ??       144:36.96 /Applications/Google Chrome.app/Contents/MacOS/Google Chrome
  504  5914     1   0 21Dec24 ??        41:42.87 /Applications/Adobe Acrobat DC/Adobe Acrobat.app/Contents/MacOS/AdobeAcrobat
  504  5917     1   0 21Dec24 ??         0:34.26 /System/Applications/Freeform.app/Contents/MacOS/Freeform
  504  5919     1   0 21Dec24 ??         5:19.04 /Applications/Slack.app/Contents/MacOS/Slack
  504  5920     1   0 21Dec24 ??         4:39.97 /System/Applications/Messages.app/Contents/MacOS/Messages
  504  5921     1   0 21Dec24 ??         1:02.64 /System/Applications/Utilities/Terminal.app/Contents/MacOS/Terminal
  504  5923     1   0 21Dec24 ??         1:48.32 /System/Library/CoreServices/Dock.app/Contents/MacOS/Dock
  504  5924     1   0 21Dec24 ??         6:38.20 /System/Library/CoreServices/SystemUIServer.app/Contents/MacOS/SystemUIServer
  504  5925     1   0 21Dec24 ??         4:52.36 /System/Library/CoreServices/Finder.app/Contents/MacOS/Finder
  504  5928     1   0 21Dec24 ??         0:02.83 /System/Library/Frameworks/QuickLookUI.framework/Versions/A/XPCServices/QuickLookUIService.xpc/Contents/MacOS/QuickLookUIService
  504  5929     1   0 21Dec24 ??         0:56.73 /System/Library/CoreServices/Spotlight.app/Contents/MacOS/Spotlight
    0  5930     1   0 21Dec24 ??         0:00.26 automountd
  504  5931     1   0 21Dec24 ??         0:28.39 /System/Library/PrivateFrameworks/AMPDevices.framework/Versions/A/Support/AMPDeviceDiscoveryAgent --launchd
  504  5934     1   0 21Dec24 ??         0:00.01 /System/Library/Frameworks/NetFS.framework/Versions/A/XPCServices/PlugInLibraryService.xpc/Contents/MacOS/PlugInLibraryService
  504  5935     1   0 21Dec24 ??         0:02.68 /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Resources/commerce
  504  5936     1   0 21Dec24 ??         0:09.83 /System/Library/CoreServices/Dock.app/Contents/XPCServices/com.apple.dock.extra.xpc/Contents/MacOS/com.apple.dock.extra
  504  5937     1   0 21Dec24 ??         0:12.00 /System/Library/PrivateFrameworks/CSExattrCrypto.framework/Versions/A/XPCServices/CSExattrCryptoService.xpc/Contents/MacOS/CSExattrCryptoService
  504  5938     1   0 21Dec24 ??         0:02.43 /Applications/Utilities/Adobe Sync/CoreSync/Core Sync.app/Contents/PlugIns/ACCFinderSync.appex/Contents/MacOS/ACCFinderSync -AppleLanguages ("en-US", "zh-Hans-US", "zh-Hant-US")
  504  5943     1   0 21Dec24 ??         0:00.23 /Applications/Google Chrome.app/Contents/Frameworks/Google Chrome Framework.framework/Versions/131.0.6778.205/Helpers/chrome_crashpad_handler --monitor-self-annotation=ptype=crashpad-handler --database=/Users/huazhou/Library/Application Support/Google/Chrome/Crashpad --url=https://clients2.google.com/cr/report --annotation=channel= --annotation=plat=OS X --annotation=prod=Chrome_Mac --annotation=ver=131.0.6778.205 --handshake-fd=5
  504  5944     1   0 21Dec24 ??         0:06.98 /System/Library/PrivateFrameworks/CallHistory.framework/Support/CallHistoryPluginHelper
  504  5947  5914   0 21Dec24 ??         0:14.55 /Applications/Adobe Acrobat DC/Adobe Acrobat.app/Contents/Helpers/AcroCEF/AcroCEF.app/Contents/MacOS/AcroCEF "/Applications/Adobe Acrobat DC/Adobe Acrobat.app/Contents/Helpers/AcroCEF/AcroCEF.app" --backgroundcolor=16514043
  504  5948     1   0 21Dec24 ??         0:00.01 /System/Library/Frameworks/NetFS.framework/Versions/A/XPCServices/PlugInLibraryService.xpc/Contents/MacOS/PlugInLibraryService
  504  5949     1   0 21Dec24 ??         0:00.23 /System/Library/Frameworks/ColorSync.framework/Support/colorsync.useragent
  504  5950     1   0 21Dec24 ??         0:00.01 /System/Library/Frameworks/ColorSync.framework/Versions/A/XPCServices/com.apple.ColorSyncXPCAgent.xpc/Contents/MacOS/com.apple.ColorSyncXPCAgent
  504  5951     1   0 21Dec24 ??         0:01.55 /System/Library/PrivateFrameworks/StocksKit.framework/XPCServices/StocksKitService.xpc/Contents/MacOS/StocksKitService
  504  5953  5947   0 21Dec24 ??         9:07.22 /Applications/Adobe Acrobat DC/Adobe Acrobat.app/Contents/Frameworks/AcroCEF Helper (GPU).app/Contents/MacOS/AcroCEF Helper (GPU) --type=gpu-process --log-severity=disable --user-agent-product=AcrobatServices/24.5.20320 Chrome/105.0.0.0 --lang=en-US --user-data-dir=/Users/huazhou/Library/Application Support/Adobe/AcroCef/DC/Acrobat/UserData --gpu-preferences=UAAAAAAAAAAgACAIAAAAAAAAAAAAAAAAAABgAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgFAAAAAAAAKAUAAAAAAAC4AQAANgAAALABAAAAAAAAuAEAAAAAAADAAQAAAAAAAMgBAAAAAAAA0AEAAAAAAADYAQAAAAAAAOABAAAAAAAA6AEAAAAAAADwAQAAAAAAAPgBAAAAAAAAAAIAAAAAAAAIAgAAAAAAABACAAAAAAAAGAIAAAAAAAAgAgAAAAAAACgCAAAAAAAAMAIAAAAAAAA4AgAAAAAAAEACAAAAAAAASAIAAAAAAABQAgAAAAAAAFgCAAAAAAAAYAIAAAAAAABoAgAAAAAAAHACAAAAAAAAeAIAAAAAAACAAgAAAAAAAIgCAAAAAAAAkAIAAAAAAACYAgAAAAAAAKACAAAAAAAAqAIAAAAAAACwAgAAAAAAALgCAAAAAAAAwAIAAAAAAADIAgAAAAAAANACAAAAAAAA2AIAAAAAAADgAgAAAAAAAOgCAAAAAAAA8AIAAAAAAAD4AgAAAAAAAAADAAAAAAAACAMAAAAAAAAQAwAAAAAAABgDAAAAAAAAIAMAAAAAAAAoAwAAAAAAADADAAAAAAAAOAMAAAAAAABAAwAAAAAAAEgDAAAAAAAAUAMAAAAAAABYAwAAAAAAABAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAGAAAAEAAAAAAAAAAAAAAABwAAABAAAAAAAAAAAAAAAAgAAAAQAAAAAAAAAAAAAAAJAAAAEAAAAAAAAAAAAAAACwAAABAAAAAAAAAAAAAAAAwAAAAQAAAAAAAAAAAAAAAOAAAAEAAAAAAAAAAAAAAADwAAABAAAAAAAAAAAQAAAAAAAAAQAAAAAAAAAAEAAAAGAAAAEAAAAAAAAAABAAAABwAAABAAAAAAAAAAAQAAAAgAAAAQAAAAAAAAAAEAAAAJAAAAEAAAAAAAAAABAAAACwAAABAAAAAAAAAAAQAAAAwAAAAQAAAAAAAAAAEAAAAOAAAAEAAAAAAAAAABAAAADwAAABAAAAAAAAAABAAAAAAAAAAQAAAAAAAAAAQAAAAGAAAAEAAAAAAAAAAEAAAABwAAABAAAAAAAAAABAAAAAgAAAAQAAAAAAAAAAQAAAAJAAAAEAAAAAAAAAAEAAAACwAAABAAAAAAAAAABAAAAAwAAAAQAAAAAAAAAAQAAAAOAAAAEAAAAAAAAAAEAAAADwAAABAAAAAAAAAABwAAAAAAAAAQAAAAAAAAAAcAAAAGAAAAEAAAAAAAAAAHAAAABwAAABAAAAAAAAAABwAAAAgAAAAQAAAAAAAAAAcAAAAJAAAAEAAAAAAAAAAHAAAACwAAABAAAAAAAAAABwAAAAwAAAAQAAAAAAAAAAcAAAAOAAAAEAAAAAAAAAAHAAAADwAAABAAAAAAAAAACAAAAAAAAAAQAAAAAAAAAAgAAAAGAAAAEAAAAAAAAAAIAAAABwAAABAAAAAAAAAACAAAAAgAAAAQAAAAAAAAAAgAAAAJAAAAEAAAAAAAAAAIAAAACwAAABAAAAAAAAAACAAAAAwAAAAQAAAAAAAAAAgAAAAOAAAAEAAAAAAAAAAIAAAADwAAABAAAAAAAAAACgAAAAAAAAAQAAAAAAAAAAoAAAAGAAAAEAAAAAAAAAAKAAAABwAAABAAAAAAAAAACgAAAAgAAAAQAAAAAAAAAAoAAAAJAAAAEAAAAAAAAAAKAAAACwAAABAAAAAAAAAACgAAAAwAAAAQAAAAAAAAAAoAAAAOAAAAEAAAAAAAAAAKAAAADwAAAAgAAAAAAAAACAAAAAAAAAA= --log-file=/Users/huazhou/Library/Logs/AcroCEF_debug.log --shared-files --field-trial-handle=1718379636,r,16886317359951895707,15443547768258620674,131072 --disable-features=BackForwardCache --seatbelt-client=19
  504  5956  5912   0 21Dec24 ??        84:52.87 /Applications/Google Chrome.app/Contents/Frameworks/Google Chrome Framework.framework/Versions/131.0.6778.205/Helpers/Google Chrome Helper (GPU).app/Contents/MacOS/Google Chrome Helper (GPU) --type=gpu-process --string-annotations --gpu-preferences=UAAAAAAAAAAgAAAEAAAAAAAAAAAAAAAAAABgAAEAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAEAAAAAAAAAAIAAAAAAAAAAgAAAAAAAAA --shared-files --field-trial-handle=1718379636,r,7761031812746268102,8910257349932112331,262144 --variations-seed-version=20241219-130728.147000 --seatbelt-client=19
  504  5959  5912   0 21Dec24 ??        27:10.72 /Applications/Google Chrome.app/Contents/Frameworks/Google Chrome Framework.framework/Versions/131.0.6778.205/Helpers/Google Chrome Helper.app/Contents/MacOS/Google Chrome Helper --type=utility --utility-sub-type=network.mojom.NetworkService --lang=en-US --service-sandbox-type=network --string-annotations --shared-files --field-trial-handle=1718379636,r,7761031812746268102,8910257349932112331,262144 --variations-seed-version=20241219-130728.147000 --seatbelt-client=19
    0  5963     1   0 21Dec24 ??         0:00.04 /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/CVMServer
  504  5968  5947   0 21Dec24 ??         0:00.54 /Applications/Adobe Acrobat DC/Adobe Acrobat.app/Contents/Frameworks/AcroCEF Helper.app/Contents/MacOS/AcroCEF Helper --type=utility --utility-sub-type=storage.mojom.StorageService --lang=en-US --service-sandbox-type=utility --use-mock-keychain --log-severity=disable --user-agent-product=AcrobatServices/24.5.20320 Chrome/105.0.0.0 --lang=en-US --user-data-dir=/Users/huazhou/Library/Application Support/Adobe/AcroCef/DC/Acrobat/UserData --log-file=/Users/huazhou/Library/Logs/AcroCEF_debug.log --shared-files --field-trial-handle=1718379636,r,16886317359951895707,15443547768258620674,131072 --disable-features=BackForwardCache --seatbelt-client=32
  504  5971  5947   0 21Dec24 ??         0:02.72 /Applications/Adobe Acrobat DC/Adobe Acrobat.app/Contents/Frameworks/AcroCEF Helper.app/Contents/MacOS/AcroCEF Helper --type=utility --utility-sub-type=network.mojom.NetworkService --lang=en-US --service-sandbox-type=network --use-mock-keychain --log-severity=disable --user-agent-product=AcrobatServices/24.5.20320 Chrome/105.0.0.0 --lang=en-US --user-data-dir=/Users/huazhou/Library/Application Support/Adobe/AcroCef/DC/Acrobat/UserData --log-file=/Users/huazhou/Library/Logs/AcroCEF_debug.log --shared-files --field-trial-handle=1718379636,r,16886317359951895707,15443547768258620674,131072 --disable-features=BackForwardCache --seatbelt-client=32
  504  5972     1   0 21Dec24 ??         0:00.09 /System/Library/Frameworks/VideoToolbox.framework/Versions/A/XPCServices/VTDecoderXPCService.xpc/Contents/MacOS/VTDecoderXPCService
  504  5978  5947   0 21Dec24 ??         0:01.03 /Applications/Adobe Acrobat DC/Adobe Acrobat.app/Contents/Frameworks/AcroCEF Helper (Renderer).app/Contents/MacOS/AcroCEF Helper (Renderer) --type=renderer --log-severity=disable --user-agent-product=AcrobatServices/24.5.20320 Chrome/105.0.0.0 --user-data-dir=/Users/huazhou/Library/Application Support/Adobe/AcroCef/DC/Acrobat/UserData --log-file=/Users/huazhou/Library/Logs/AcroCEF_debug.log --touch-events=enabled --lang=en-US --num-raster-threads=4 --enable-zero-copy --enable-gpu-memory-buffer-compositor-resources --enable-main-frame-before-activation --renderer-client-id=6 --launch-time-ticks=830849034 --shared-files --field-trial-handle=1718379636,r,16886317359951895707,15443547768258620674,131072 --disable-features=BackForwardCache --seatbelt-client=32
  504  5979  5947   0 21Dec24 ??         0:00.85 /Applications/Adobe Acrobat DC/Adobe Acrobat.app/Contents/Frameworks/AcroCEF Helper (Renderer).app/Contents/MacOS/AcroCEF Helper (Renderer) --type=renderer --log-severity=disable --user-agent-product=AcrobatServices/24.5.20320 Chrome/105.0.0.0 --user-data-dir=/Users/huazhou/Library/Application Support/Adobe/AcroCef/DC/Acrobat/UserData --log-file=/Users/huazhou/Library/Logs/AcroCEF_debug.log --touch-events=enabled --lang=en-US --num-raster-threads=4 --enable-zero-copy --enable-gpu-memory-buffer-compositor-resources --enable-main-frame-before-activation --renderer-client-id=7 --launch-time-ticks=830849745 --shared-files --field-trial-handle=1718379636,r,16886317359951895707,15443547768258620674,131072 --disable-features=BackForwardCache --seatbelt-client=32
  504  5980  5947   0 21Dec24 ??         0:07.55 /Applications/Adobe Acrobat DC/Adobe Acrobat.app/Contents/Frameworks/AcroCEF Helper (Renderer).app/Contents/MacOS/AcroCEF Helper (Renderer) --type=renderer --log-severity=disable --user-agent-product=AcrobatServices/24.5.20320 Chrome/105.0.0.0 --user-data-dir=/Users/huazhou/Library/Application Support/Adobe/AcroCef/DC/Acrobat/UserData --log-file=/Users/huazhou/Library/Logs/AcroCEF_debug.log --touch-events=enabled --lang=en-US --num-raster-threads=4 --enable-zero-copy --enable-gpu-memory-buffer-compositor-resources --enable-main-frame-before-activation --renderer-client-id=8 --launch-time-ticks=830919094 --shared-files --field-trial-handle=1718379636,r,16886317359951895707,15443547768258620674,131072 --disable-features=BackForwardCache --seatbelt-client=34
  504  5984  5912   0 21Dec24 ??         0:37.02 /Applications/Google Chrome.app/Contents/Frameworks/Google Chrome Framework.framework/Versions/131.0.6778.205/Helpers/Google Chrome Helper.app/Contents/MacOS/Google Chrome Helper --type=utility --utility-sub-type=storage.mojom.StorageService --lang=en-US --service-sandbox-type=service --string-annotations --shared-files --field-trial-handle=1718379636,r,7761031812746268102,8910257349932112331,262144 --variations-seed-version=20241219-130728.147000 --seatbelt-client=35
   89  5990     1   0 21Dec24 ??         0:01.64 /usr/libexec/trustd --agent
  504  5997     1   0 21Dec24 ??         0:00.08 /System/Cryptexes/App/usr/libexec/SafariLaunchAgent
  504  5998     1   0 21Dec24 ??         0:02.34 /System/Library/PrivateFrameworks/WebPrivacy.framework/webprivacyd
  504  5999     1   0 21Dec24 ??         0:54.41 /System/Library/Frameworks/Metal.framework/Versions/A/XPCServices/MTLCompilerService.xpc/Contents/MacOS/MTLCompilerService
  504  6000     1   0 21Dec24 ??         0:08.55 /System/Library/Frameworks/Metal.framework/Versions/A/XPCServices/MTLCompilerService.xpc/Contents/MacOS/MTLCompilerService
  504  6001     1   0 21Dec24 ??         0:02.54 /System/Library/Frameworks/LinkPresentation.framework/Versions/A/XPCServices/com.apple.LinkPresentation.LinkSnapshotGeneratorService.xpc/Contents/MacOS/com.apple.LinkPresentation.LinkSnapshotGeneratorService
  504  6003     1   0 21Dec24 ??         0:01.92 /System/Library/Frameworks/StoreKit.framework/Support/storekitagent
  504  6005     1   0 21Dec24 ??         0:00.24 /Applications/Slack.app/Contents/Frameworks/Electron Framework.framework/Helpers/chrome_crashpad_handler --no-upload-gzip --monitor-self-annotation=ptype=crashpad-handler --database=/Users/huazhou/Library/Application Support/Slack/Crashpad --url=https://slack.com/apps/sentryproxy/api/5277886/minidump/?sentry_key=fd30fe469dbf4aec9db40548e5acf91e --annotation=_productName=Slack --annotation=_version=4.41.105 --annotation=plat=OS X --annotation=prod=Electron --annotation=sentry___initialScope={"release":"Slack@4.41.105","environment":"production","user":{"id":"2fb6da68-8f4a-4bf6-b775-ddd7e2cf41dd"},"tags":{"uuid":"2fb6da68-8f4a-4bf6-b775-ddd7e2cf41dd"},"extra":{"sessionId":"MmZiNmRhNjgtOGY0YS00YmY2LWI3NzUtZGRkN2UyY2Y0MWRkXzE3MzQ4MDI4MzIwNjM="}} --annotation=ver=33.2.0 --handshake-fd=24
  504  6008  5947   0 21Dec24 ??         0:01.37 /Applications/Adobe Acrobat DC/Adobe Acrobat.app/Contents/Frameworks/AcroCEF Helper (Renderer).app/Contents/MacOS/AcroCEF Helper (Renderer) --type=renderer --log-severity=disable --user-agent-product=AcrobatServices/24.5.20320 Chrome/105.0.0.0 --user-data-dir=/Users/huazhou/Library/Application Support/Adobe/AcroCef/DC/Acrobat/UserData --log-file=/Users/huazhou/Library/Logs/AcroCEF_debug.log --touch-events=enabled --lang=en-US --num-raster-threads=4 --enable-zero-copy --enable-gpu-memory-buffer-compositor-resources --enable-main-frame-before-activation --renderer-client-id=9 --launch-time-ticks=833149814 --shared-files --field-trial-handle=1718379636,r,16886317359951895707,15443547768258620674,131072 --disable-features=BackForwardCache --seatbelt-client=29
  504  6009     1   0 21Dec24 ??         0:00.09 /System/Library/Frameworks/Metal.framework/Versions/A/XPCServices/MTLCompilerService.xpc/Contents/MacOS/MTLCompilerService
  504  6013     1   0 21Dec24 ??         0:00.02 /System/Library/Frameworks/Metal.framework/Versions/A/XPCServices/MTLCompilerService.xpc/Contents/MacOS/MTLCompilerService
  504  6017  5919   0 21Dec24 ??         1:30.35 /Applications/Slack.app/Contents/Frameworks/Slack Helper (GPU).app/Contents/MacOS/Slack Helper (GPU) --type=gpu-process --user-data-dir=/Users/huazhou/Library/Application Support/Slack --gpu-preferences=UAAAAAAAAAAgAAAEAAAAAAAAAAAAAAAAAABgAAEAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAEAAAAAAAAAAIAAAAAAAAAAgAAAAAAAAA --shared-files --field-trial-handle=1718379636,r,3428087782279552072,4903709949621972024,262144 --enable-features=ScreenCaptureKitMac,ScreenCaptureKitPickerScreen,ScreenCaptureKitStreamPickerSonoma --disable-features=AllowAggressiveThrottlingWithWebSocket,CalculateNativeWinOcclusion,EnableWatermarkView,HardwareMediaKeyHandling,IntensiveWakeUpThrottling,LogJsConsoleMessages,MacWebContentsOcclusion,PostQuantumKyber,RequestInitiatorSiteLockEnfocement,SpareRendererForSitePerProcess,TimeoutHangingVideoCaptureStarts,WebRtcHideLocalIpsWithMdns,WinRetrieveSuggestionsOnlyOnDemand --variations-seed-version --seatbelt-client=40
  504  6018  5919   0 21Dec24 ??         2:24.78 /Applications/Slack.app/Contents/Frameworks/Slack Helper.app/Contents/MacOS/Slack Helper --type=utility --utility-sub-type=network.mojom.NetworkService --lang=en-US --service-sandbox-type=network --user-data-dir=/Users/huazhou/Library/Application Support/Slack --standard-schemes=app,slack-webapp-dev --enable-sandbox --secure-schemes=app,slack-webapp-dev --bypasscsp-schemes=slack-webapp-dev --cors-schemes=slack-webapp-dev --fetch-schemes=slack-webapp-dev --service-worker-schemes=slack-webapp-dev --shared-files --field-trial-handle=1718379636,r,3428087782279552072,4903709949621972024,262144 --enable-features=ScreenCaptureKitMac,ScreenCaptureKitPickerScreen,ScreenCaptureKitStreamPickerSonoma --disable-features=AllowAggressiveThrottlingWithWebSocket,CalculateNativeWinOcclusion,EnableWatermarkView,HardwareMediaKeyHandling,IntensiveWakeUpThrottling,LogJsConsoleMessages,MacWebContentsOcclusion,PostQuantumKyber,RequestInitiatorSiteLockEnfocement,SpareRendererForSitePerProcess,TimeoutHangingVideoCaptureStarts,WebRtcHideLocalIpsWithMdns,WinRetrieveSuggestionsOnlyOnDemand --variations-seed-version --seatbelt-client=24
  504  6021  5919   0 21Dec24 ??        23:32.58 /Applications/Slack.app/Contents/Frameworks/Slack Helper (Renderer).app/Contents/MacOS/Slack Helper (Renderer) --type=renderer --user-data-dir=/Users/huazhou/Library/Application Support/Slack --standard-schemes=app,slack-webapp-dev --enable-sandbox --secure-schemes=app,slack-webapp-dev --bypasscsp-schemes=slack-webapp-dev --cors-schemes=slack-webapp-dev --fetch-schemes=slack-webapp-dev --service-worker-schemes=slack-webapp-dev --app-path=/Applications/Slack.app/Contents/Resources/app-arm64.asar --enable-sandbox --enable-blink-features=ExperimentalJSProfiler --disable-blink-features --lang=en-US --num-raster-threads=4 --enable-zero-copy --enable-gpu-memory-buffer-compositor-resources --enable-main-frame-before-activation --renderer-client-id=4 --time-ticks-at-unix-epoch=-1734801999190348 --launch-time-ticks=834043924 --shared-files --field-trial-handle=1718379636,r,3428087782279552072,4903709949621972024,262144 --enable-features=ScreenCaptureKitMac,ScreenCaptureKitPickerScreen,ScreenCaptureKitStreamPickerSonoma --disable-features=AllowAggressiveThrottlingWithWebSocket,CalculateNativeWinOcclusion,EnableWatermarkView,HardwareMediaKeyHandling,IntensiveWakeUpThrottling,LogJsConsoleMessages,MacWebContentsOcclusion,PostQuantumKyber,RequestInitiatorSiteLockEnfocement,SpareRendererForSitePerProcess,TimeoutHangingVideoCaptureStarts,WebRtcHideLocalIpsWithMdns,WinRetrieveSuggestionsOnlyOnDemand --variations-seed-version --window-type=main --seatbelt-client=69
  504  6023     1   0 21Dec24 ??         0:09.23 /System/Library/PrivateFrameworks/Synapse.framework/Support/contentlinkingd
  504  6024  5914   0 21Dec24 ??         0:13.05 /Applications/Adobe Acrobat DC/Adobe Acrobat.app/Contents/Helpers/AdobeResourceSynchronizer.app/Contents/MacOS/AdobeResourceSynchronizer -c
  504  6025     1   0 21Dec24 ??         0:07.16 /System/Library/Frameworks/Metal.framework/Versions/A/XPCServices/MTLCompilerService.xpc/Contents/MacOS/MTLCompilerService
  504  6026     1   0 21Dec24 ??         0:02.06 /System/Library/Frameworks/Metal.framework/Versions/A/XPCServices/MTLCompilerService.xpc/Contents/MacOS/MTLCompilerService
  504  6031     1   0 21Dec24 ??         0:00.30 /Library/Application Support/Citrix Receiver/SafariAdapter.app/Contents/MacOS/SafariAdapter
  504  6034     1   0 21Dec24 ??         0:00.03 /usr/bin/open -W /Applications/QualysCloudAgent.app
    0  6035     1   0 21Dec24 ??         1:35.21 /Applications/GlobalProtect.app/Contents/Resources/PanGPS
  504  6039     1   0 21Dec24 ??         0:04.24 /System/Library/Image Capture/Support/icdd
  504  6041     1   0 21Dec24 ??         1:14.07 /Applications/GlobalProtect.app/Contents/MacOS/GlobalProtect
  504  6042     1   0 21Dec24 ??         0:01.44 /Library/Application Support/Box/Box/Autoupdater/Box Helper.app/Contents/MacOS/Box Helper
  504  6043     1   0 21Dec24 ??         0:01.93 /Library/FireEye/xagt/xagtnotif.app/Contents/MacOS/xagtnotif
  504  6044     1   0 21Dec24 ??         0:02.08 /Users/huazhou/Library/Application Support/iStat Menus 7/iStat Menus Helper.app/Contents/MacOS/iStat Menus Helper
  504  6045     1   0 21Dec24 ??         0:06.11 /System/Library/PrivateFrameworks/AskPermission.framework/Versions/A/Resources/askpermissiond
  504  6047     1   0 21Dec24 ??         0:02.14 /System/Library/CoreServices/AirPlayUIAgent.app/Contents/MacOS/AirPlayUIAgent --launchd
  504  6049     1   0 21Dec24 ??         5:39.06 /usr/local/libexec/Citrix Workspace Helper.app/Contents/MacOS/Citrix Workspace Helper
  504  6050     1   0 21Dec24 ??         1:18.42 /Applications/Utilities/Adobe Creative Cloud/ACC/Creative Cloud.app/Contents/MacOS/Creative Cloud --showwindow=false --onOSstartup=true
  504  6051     1   0 21Dec24 ??         4:48.39 /Applications/Aruba Networks/ClearPassOnGuard.app/Contents/MacOS/ClearPassOnGuard
  504  6052     1   0 21Dec24 ??        24:56.65 /Users/huazhou/Library/Application Support/iStat Menus 7/iStat Menus Menubar.app/Contents/MacOS/iStat Menus Menubar
  504  6054     1   0 21Dec24 ??         0:18.97 /System/Library/CoreServices/TextInputMenuAgent.app/Contents/MacOS/TextInputMenuAgent
  504  6055     1   0 21Dec24 ??         0:07.23 /Applications/Grammarly Desktop.app/Contents/Library/LaunchAgents/Grammarly Desktop Helper.app/Contents/MacOS/Grammarly Desktop Helper
  504  6057     1   0 21Dec24 ??         1:32.99 /usr/local/libexec/ServiceRecords.app/Contents/MacOS/ServiceRecords
  504  6058     1   0 21Dec24 ??         1:32.12 /opt/cisco/secureclient/bin/Cisco Secure Client - AnyConnect VPN Service.app/Contents/MacOS/Cisco Secure Client - AnyConnect VPN Service
  504  6060     1   0 21Dec24 ??        50:12.64 /Applications/Grammarly Desktop.app/Contents/MacOS/Grammarly Desktop launchSourceLoginItem
  504  6064     1   0 21Dec24 ??         0:05.81 /System/Library/Frameworks/WebKit.framework/Versions/A/XPCServices/com.apple.WebKit.GPU.xpc/Contents/MacOS/com.apple.WebKit.GPU
  504  6065     1   0 21Dec24 ??         0:00.13 /System/Library/Frameworks/WebKit.framework/Versions/A/XPCServices/com.apple.WebKit.WebContent.xpc/Contents/MacOS/com.apple.WebKit.WebContent
  504  6066     1   0 21Dec24 ??         0:00.38 /System/Library/Frameworks/MediaAccessibility.framework/Versions/A/XPCServices/com.apple.accessibility.mediaaccessibilityd.xpc/Contents/MacOS/com.apple.accessibility.mediaaccessibilityd
  504  6067     1   0 21Dec24 ??         0:34.42 /System/Library/Frameworks/WebKit.framework/Versions/A/XPCServices/com.apple.WebKit.Networking.xpc/Contents/MacOS/com.apple.WebKit.Networking
    0  6087     1   0 21Dec24 ??         0:06.70 /System/Library/PrivateFrameworks/FamilyControls.framework/Resources/parentalcontrolsd
  504  6093     1   0 21Dec24 ??         0:00.02 /System/Library/Frameworks/NetFS.framework/Versions/A/XPCServices/PlugInLibraryService.xpc/Contents/MacOS/PlugInLibraryService
  504  6094  5919   0 21Dec24 ??         0:17.65 /Applications/Slack.app/Contents/Frameworks/Slack Helper.app/Contents/MacOS/Slack Helper --type=utility --utility-sub-type=audio.mojom.AudioService --lang=en-US --service-sandbox-type=audio --message-loop-type-ui --user-data-dir=/Users/huazhou/Library/Application Support/Slack --standard-schemes=app,slack-webapp-dev --enable-sandbox --secure-schemes=app,slack-webapp-dev --bypasscsp-schemes=slack-webapp-dev --cors-schemes=slack-webapp-dev --fetch-schemes=slack-webapp-dev --service-worker-schemes=slack-webapp-dev --shared-files --field-trial-handle=1718379636,r,3428087782279552072,4903709949621972024,262144 --enable-features=ScreenCaptureKitMac,ScreenCaptureKitPickerScreen,ScreenCaptureKitStreamPickerSonoma --disable-features=AllowAggressiveThrottlingWithWebSocket,CalculateNativeWinOcclusion,EnableWatermarkView,HardwareMediaKeyHandling,IntensiveWakeUpThrottling,LogJsConsoleMessages,MacWebContentsOcclusion,PostQuantumKyber,RequestInitiatorSiteLockEnfocement,SpareRendererForSitePerProcess,TimeoutHangingVideoCaptureStarts,WebRtcHideLocalIpsWithMdns,WinRetrieveSuggestionsOnlyOnDemand --variations-seed-version --seatbelt-client=84
  504  6095  5919   0 21Dec24 ??         0:18.77 /Applications/Slack.app/Contents/Frameworks/Slack Helper (Plugin).app/Contents/MacOS/Slack Helper (Plugin) --type=utility --utility-sub-type=video_capture.mojom.VideoCaptureService --lang=en-US --service-sandbox-type=none --message-loop-type-ui --user-data-dir=/Users/huazhou/Library/Application Support/Slack --standard-schemes=app,slack-webapp-dev --enable-sandbox --secure-schemes=app,slack-webapp-dev --bypasscsp-schemes=slack-webapp-dev --cors-schemes=slack-webapp-dev --fetch-schemes=slack-webapp-dev --service-worker-schemes=slack-webapp-dev --shared-files --field-trial-handle=1718379636,r,3428087782279552072,4903709949621972024,262144 --enable-features=ScreenCaptureKitMac,ScreenCaptureKitPickerScreen,ScreenCaptureKitStreamPickerSonoma --disable-features=AllowAggressiveThrottlingWithWebSocket,CalculateNativeWinOcclusion,EnableWatermarkView,HardwareMediaKeyHandling,IntensiveWakeUpThrottling,LogJsConsoleMessages,MacWebContentsOcclusion,PostQuantumKyber,RequestInitiatorSiteLockEnfocement,SpareRendererForSitePerProcess,TimeoutHangingVideoCaptureStarts,WebRtcHideLocalIpsWithMdns,WinRetrieveSuggestionsOnlyOnDemand --variations-seed-version
  504  6097     1   0 21Dec24 ??         0:00.78 /System/Library/PrivateFrameworks/SiriTTSService.framework/Versions/A/XPCServices/com.apple.SiriTTSService.TrialProxy.xpc/Contents/MacOS/com.apple.SiriTTSService.TrialProxy
  504  6110     1   0 21Dec24 ??         0:02.38 /Applications/QualysCloudAgent.app/Contents/MacOS/QualysCloudAgent
  504  6112     1   0 21Dec24 ??         4:14.66 /Applications/Box.app/Contents/MacOS/Box
    0  6120     1   0 21Dec24 ??         0:01.35 /Library/Application Support/JAMF/Jamf.app/Contents/MacOS/JamfDaemon.app/Contents/XPCServices/JamfProCommService.xpc/Contents/MacOS/JamfProCommService
  504  6124     1   0 21Dec24 ??         4:02.38 /Library/Application Support/Adobe/Adobe Desktop Common/IPCBox/AdobeIPCBroker.app/Contents/MacOS/AdobeIPCBroker -launchedbyvulcan /Applications/Utilities/Adobe Creative Cloud Experience/CCXProcess/CCXProcess.app/Contents/MacOS/Creative Cloud Content Manager.node
  504  6129     1   0 21Dec24 ??         0:06.08 /System/Library/PrivateFrameworks/UIFoundation.framework/Versions/A/XPCServices/nsattributedstringagent.xpc/Contents/MacOS/nsattributedstringagent
  504  6137     1   0 21Dec24 ??         0:00.02 /System/Library/Frameworks/AudioToolbox.framework/XPCServices/com.apple.audio.SandboxHelper.xpc/Contents/MacOS/com.apple.audio.SandboxHelper
  294  6139     1   0 21Dec24 ??         0:03.01 /usr/libexec/audiomxd
  504  6140     1   0 21Dec24 ??         0:00.05 /System/Library/Frameworks/Metal.framework/Versions/A/XPCServices/MTLCompilerService.xpc/Contents/MacOS/MTLCompilerService
  504  6144     1   0 21Dec24 ??         0:00.55 /System/Library/Frameworks/VideoToolbox.framework/Versions/A/XPCServices/VTEncoderXPCService.xpc/Contents/MacOS/VTEncoderXPCService
    0  6151     1   0 21Dec24 ??         0:00.49 /Applications/OneDrive.app/Contents/StandaloneUpdaterDaemon.xpc/Contents/MacOS/StandaloneUpdaterDaemon
  504  6164  6112   0 21Dec24 ??         0:08.24 /Applications/Box.app/Contents/Resources/Box UI.app/Contents/MacOS/Box UI --product-name Box
  504  6165  6050   0 21Dec24 ??         0:07.37 /Applications/Utilities/Adobe Creative Cloud/ACC/Creative Cloud.app/Contents/MacOS/../Frameworks/Creative Cloud UI Helper (GPU).app/Contents/MacOS/Creative Cloud UI Helper (GPU) --type=gpu-process --no-sandbox --locales-dir-path=/Library/Application Support/Adobe/Adobe Desktop Common/CEF/Chromium Embedded Framework.framework/Resources --log-severity=warning --user-agent=Mozilla/5.0 (Macintosh; Apple Silicon15_2_0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/116.0.5845.190 Safari/537.36 CreativeCloud/6.4.0.361 --lang=en --user-data-dir=/Users/huazhou/Library/Application Support/CEF/User Data --gpu-preferences=WAAAAAAAAAAgAAAEAAAAAAAAAAAAAAAAAABgAAAAAAA4AAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAcAAAAAAABoBwAAAAAAAHgCAABOAAAAcAIAAAAAAAB4AgAAAAAAAIACAAAAAAAAiAIAAAAAAACQAgAAAAAAAJgCAAAAAAAAoAIAAAAAAACoAgAAAAAAALACAAAAAAAAuAIAAAAAAADAAgAAAAAAAMgCAAAAAAAA0AIAAAAAAADYAgAAAAAAAOACAAAAAAAA6AIAAAAAAADwAgAAAAAAAPgCAAAAAAAAAAMAAAAAAAAIAwAAAAAAABADAAAAAAAAGAMAAAAAAAAgAwAAAAAAACgDAAAAAAAAMAMAAAAAAAA4AwAAAAAAAEADAAAAAAAASAMAAAAAAABQAwAAAAAAAFgDAAAAAAAAYAMAAAAAAABoAwAAAAAAAHADAAAAAAAAeAMAAAAAAACAAwAAAAAAAIgDAAAAAAAAkAMAAAAAAACYAwAAAAAAAKADAAAAAAAAqAMAAAAAAACwAwAAAAAAALgDAAAAAAAAwAMAAAAAAADIAwAAAAAAANADAAAAAAAA2AMAAAAAAADgAwAAAAAAAOgDAAAAAAAA8AMAAAAAAAD4AwAAAAAAAAAEAAAAAAAACAQAAAAAAAAQBAAAAAAAABgEAAAAAAAAIAQAAAAAAAAoBAAAAAAAADAEAAAAAAAAOAQAAAAAAABABAAAAAAAAEgEAAAAAAAAUAQAAAAAAABYBAAAAAAAAGAEAAAAAAAAaAQAAAAAAABwBAAAAAAAAHgEAAAAAAAAgAQAAAAAAACIBAAAAAAAAJAEAAAAAAAAmAQAAAAAAACgBAAAAAAAAKgEAAAAAAAAsAQAAAAAAAC4BAAAAAAAAMAEAAAAAAAAyAQAAAAAAADQBAAAAAAAANgEAAAAAAAAEAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAEAAAAQAAAAAAAAAAAAAAACAAAAEAAAAAAAAAAAAAAAAwAAABAAAAAAAAAAAAAAAAYAAAAQAAAAAAAAAAAAAAAHAAAAEAAAAAAAAAAAAAAACAAAABAAAAAAAAAAAAAAAAkAAAAQAAAAAAAAAAAAAAALAAAAEAAAAAAAAAAAAAAADAAAABAAAAAAAAAAAAAAAA4AAAAQAAAAAAAAAAAAAAAPAAAAEAAAAAAAAAAAAAAAEAAAABAAAAAAAAAAAQAAAAAAAAAQAAAAAAAAAAEAAAABAAAAEAAAAAAAAAABAAAAAgAAABAAAAAAAAAAAQAAAAMAAAAQAAAAAAAAAAEAAAAGAAAAEAAAAAAAAAABAAAABwAAABAAAAAAAAAAAQAAAAgAAAAQAAAAAAAAAAEAAAAJAAAAEAAAAAAAAAABAAAACwAAABAAAAAAAAAAAQAAAAwAAAAQAAAAAAAAAAEAAAAOAAAAEAAAAAAAAAABAAAADwAAABAAAAAAAAAAAQAAABAAAAAQAAAAAAAAAAQAAAAAAAAAEAAAAAAAAAAEAAAAAQAAABAAAAAAAAAABAAAAAIAAAAQAAAAAAAAAAQAAAADAAAAEAAAAAAAAAAEAAAABgAAABAAAAAAAAAABAAAAAcAAAAQAAAAAAAAAAQAAAAIAAAAEAAAAAAAAAAEAAAACQAAABAAAAAAAAAABAAAAAsAAAAQAAAAAAAAAAQAAAAMAAAAEAAAAAAAAAAEAAAADgAAABAAAAAAAAAABAAAAA8AAAAQAAAAAAAAAAQAAAAQAAAAEAAAAAAAAAAHAAAAAAAAABAAAAAAAAAABwAAAAEAAAAQAAAAAAAAAAcAAAACAAAAEAAAAAAAAAAHAAAAAwAAABAAAAAAAAAABwAAAAYAAAAQAAAAAAAAAAcAAAAHAAAAEAAAAAAAAAAHAAAACAAAABAAAAAAAAAABwAAAAkAAAAQAAAAAAAAAAcAAAALAAAAEAAAAAAAAAAHAAAADAAAABAAAAAAAAAABwAAAA4AAAAQAAAAAAAAAAcAAAAPAAAAEAAAAAAAAAAHAAAAEAAAABAAAAAAAAAACAAAAAAAAAAQAAAAAAAAAAgAAAABAAAAEAAAAAAAAAAIAAAAAgAAABAAAAAAAAAACAAAAAMAAAAQAAAAAAAAAAgAAAAGAAAAEAAAAAAAAAAIAAAABwAAABAAAAAAAAAACAAAAAgAAAAQAAAAAAAAAAgAAAAJAAAAEAAAAAAAAAAIAAAACwAAABAAAAAAAAAACAAAAAwAAAAQAAAAAAAAAAgAAAAOAAAAEAAAAAAAAAAIAAAADwAAABAAAAAAAAAACAAAABAAAAAQAAAAAAAAAAoAAAAAAAAAEAAAAAAAAAAKAAAAAQAAABAAAAAAAAAACgAAAAIAAAAQAAAAAAAAAAoAAAADAAAAEAAAAAAAAAAKAAAABgAAABAAAAAAAAAACgAAAAcAAAAQAAAAAAAAAAoAAAAIAAAAEAAAAAAAAAAKAAAACQAAABAAAAAAAAAACgAAAAsAAAAQAAAAAAAAAAoAAAAMAAAAEAAAAAAAAAAKAAAADgAAABAAAAAAAAAACgAAAA8AAAAQAAAAAAAAAAoAAAAQAAAACAAAAAAAAAAIAAAAAAAAAA== --log-file=/Users/huazhou/Library/Logs/CreativeCloud/ACC/CEF.log --shared-files --field-trial-handle=1718379636,r,9093722848701855478,2696465043092721564,262144 --disable-features=BackForwardCache,DocumentPictureInPictureAPI
  504  6167  6112   0 21Dec24 ??         6:41.42 /Applications/Box.app/Contents/MacOS/streem --log-level info --folder-prefetch-depth 1 --product-name Box --default-refetch-timeout-seconds 864000 --database-id 9d61bf28-5420-11ee-8aa0-54de2d1375e6 --enable-macos-14-workaround
  504  6168  6050   0 21Dec24 ??         3:51.68 /Library/Application Support/Adobe/Adobe Desktop Common/ADS/Adobe Desktop Service.app/Contents/MacOS/Adobe Desktop Service --onOSstartup=true --showwindow=false --waitForRegistration=true
  504  6169  6050   0 21Dec24 ??         0:00.08 /Applications/Utilities/Adobe Creative Cloud/ACC/Creative Cloud.app/Contents/MacOS/../Frameworks/Creative Cloud UI Helper.app/Contents/MacOS/Creative Cloud UI Helper --type=utility --utility-sub-type=storage.mojom.StorageService --lang=en --service-sandbox-type=service --no-sandbox --use-mock-keychain --locales-dir-path=/Library/Application Support/Adobe/Adobe Desktop Common/CEF/Chromium Embedded Framework.framework/Resources --log-severity=warning --user-agent=Mozilla/5.0 (Macintosh; Apple Silicon15_2_0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/116.0.5845.190 Safari/537.36 CreativeCloud/6.4.0.361 --lang=en --user-data-dir=/Users/huazhou/Library/Application Support/CEF/User Data --log-file=/Users/huazhou/Library/Logs/CreativeCloud/ACC/CEF.log --shared-files --field-trial-handle=1718379636,r,9093722848701855478,2696465043092721564,262144 --disable-features=BackForwardCache,DocumentPictureInPictureAPI
  504  6170  6050   0 21Dec24 ??         0:02.88 /Applications/Utilities/Adobe Creative Cloud/ACC/Creative Cloud.app/Contents/MacOS/../Frameworks/Creative Cloud UI Helper.app/Contents/MacOS/Creative Cloud UI Helper --type=utility --utility-sub-type=network.mojom.NetworkService --lang=en --service-sandbox-type=network --no-sandbox --use-mock-keychain --locales-dir-path=/Library/Application Support/Adobe/Adobe Desktop Common/CEF/Chromium Embedded Framework.framework/Resources --log-severity=warning --user-agent=Mozilla/5.0 (Macintosh; Apple Silicon15_2_0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/116.0.5845.190 Safari/537.36 CreativeCloud/6.4.0.361 --lang=en --user-data-dir=/Users/huazhou/Library/Application Support/CEF/User Data --log-file=/Users/huazhou/Library/Logs/CreativeCloud/ACC/CEF.log --shared-files --field-trial-handle=1718379636,r,9093722848701855478,2696465043092721564,262144 --disable-features=BackForwardCache,DocumentPictureInPictureAPI
  504  6171  6050   0 21Dec24 ??         3:48.14 /Applications/Utilities/Adobe Creative Cloud/ACC/Creative Cloud.app/Contents/MacOS/../Frameworks/Creative Cloud UI Helper (Renderer).app/Contents/MacOS/Creative Cloud UI Helper (Renderer) --type=renderer --locales-dir-path=/Library/Application Support/Adobe/Adobe Desktop Common/CEF/Chromium Embedded Framework.framework/Resources --log-severity=warning --user-agent=Mozilla/5.0 (Macintosh; Apple Silicon15_2_0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/116.0.5845.190 Safari/537.36 CreativeCloud/6.4.0.361 --user-data-dir=/Users/huazhou/Library/Application Support/CEF/User Data --first-renderer-process --no-sandbox --autoplay-policy=no-user-gesture-required --log-file=/Users/huazhou/Library/Logs/CreativeCloud/ACC/CEF.log --js-flags=--expose-gc --lang=en --num-raster-threads=4 --enable-zero-copy --enable-gpu-memory-buffer-compositor-resources --enable-main-frame-before-activation --renderer-client-id=5 --time-ticks-at-unix-epoch=-1734801999190372 --launch-time-ticks=839694051 --shared-files --field-trial-handle=1718379636,r,9093722848701855478,2696465043092721564,262144 --disable-features=BackForwardCache,DocumentPictureInPictureAPI
    0  6197   800   0 21Dec24 ??        38:31.24 /usr/bin/powermetrics -i 2000 --samplers cpu_power gpu_power -a --hide-cpu-duty-cycle
  504  6201     1   0 21Dec24 ??         0:20.96 /Library/Apple/System/Library/CoreServices/XProtect.app/Contents/XPCServices/XProtectPluginService.xpc/Contents/MacOS/XProtectPluginService
  504  6215  6168   0 21Dec24 ??         1:00.17 /Applications/Utilities/Adobe Creative Cloud/ACC/Creative Cloud Helper.app/Contents/MacOS/Creative Cloud Helper --remoteApplet=LiveType_BL --remoteAppletInstanceID=3E218F86-9A4A-456C-B2AA-D6DC656A920C --remoteHelper=CCH_LiveType --vulcanID=COSY
  504  6219     1   0 21Dec24 ??         0:00.60 /System/Library/Frameworks/Metal.framework/Versions/A/XPCServices/MTLCompilerService.xpc/Contents/MacOS/MTLCompilerService
  504  6239     1   0 21Dec24 ??         0:00.03 /System/Library/Frameworks/Metal.framework/Versions/A/XPCServices/MTLCompilerService.xpc/Contents/MacOS/MTLCompilerService
  504  6241  6112   0 21Dec24 ??         0:00.03 /Applications/Box.app/Contents/MacOS/python -B -c from multiprocessing.resource_tracker import main;main(27)
  504  6251     1   0 21Dec24 ??         0:00.74 /System/Library/Frameworks/ExtensionFoundation.framework/Versions/A/XPCServices/extensionkitservice.xpc/Contents/MacOS/extensionkitservice
  504  6271     1   0 21Dec24 ??         9:05.90 /Applications/Utilities/Adobe Sync/CoreSync/Core Sync.app/Contents/MacOS/Core Sync
  504  6286     1   0 21Dec24 ??         2:17.46 /System/Library/PrivateFrameworks/SafariSafeBrowsing.framework/com.apple.Safari.SafeBrowsing.Service
    0  6327     1   0 21Dec24 ??         0:00.49 /Library/PrivilegedHelperTools/com.adobe.acc.installer.v2
  504  6363     1   0 21Dec24 ??         2:23.83 /Applications/Citrix Workspace.app/Contents/MacOS/Citrix Workspace LaunchStatusMenuFromHelper
  504  6387     1   0 21Dec24 ??         0:07.70 /System/Library/Frameworks/WebKit.framework/Versions/A/XPCServices/com.apple.WebKit.GPU.xpc/Contents/MacOS/com.apple.WebKit.GPU
  504  6388     1   0 21Dec24 ??         0:00.41 /System/Library/Frameworks/WebKit.framework/Versions/A/XPCServices/com.apple.WebKit.WebContent.xpc/Contents/MacOS/com.apple.WebKit.WebContent
  504  6389     1   0 21Dec24 ??         0:01.25 /System/Library/Frameworks/WebKit.framework/Versions/A/XPCServices/com.apple.WebKit.Networking.xpc/Contents/MacOS/com.apple.WebKit.Networking
    0  6391     1   0 21Dec24 ??         2:30.53 /Library/Application Support/Citrix Receiver/CtxWorkspaceHelperDaemon.app/Contents/MacOS/CtxWorkspaceHelperDaemon
  504  6395     1   0 21Dec24 ??         0:00.16 /System/Library/Frameworks/WebKit.framework/Versions/A/XPCServices/com.apple.WebKit.WebContent.xpc/Contents/MacOS/com.apple.WebKit.WebContent
  504  6396     1   0 21Dec24 ??         0:00.19 /System/Library/Frameworks/WebKit.framework/Versions/A/XPCServices/com.apple.WebKit.WebContent.xpc/Contents/MacOS/com.apple.WebKit.WebContent
  504  6401     1   0 21Dec24 ??         0:00.04 /System/Library/Frameworks/Metal.framework/Versions/A/XPCServices/MTLCompilerService.xpc/Contents/MacOS/MTLCompilerService
  504  6402     1   0 21Dec24 ??         0:00.03 /System/Library/Frameworks/Metal.framework/Versions/A/XPCServices/MTLCompilerService.xpc/Contents/MacOS/MTLCompilerService
  504  6444  5914   0 21Dec24 ??         0:00.00 <defunct>
  504  6447     1   0 21Dec24 ??         0:55.43 /System/Library/Services/AppleSpell.service/Contents/MacOS/AppleSpell
  504  6448     1   0 21Dec24 ??         0:07.77 /usr/libexec/naturallanguaged
  504  6507     1   0 21Dec24 ??         0:00.24 /System/Library/PrivateFrameworks/WeatherDaemon.framework/weatherd
  504  6520     1   0 21Dec24 ??         0:03.22 /usr/libexec/adprivacyd
  504  6604     1   0 21Dec24 ??         0:20.10 /usr/libexec/studentd
  278  6607     1   0 21Dec24 ??         0:00.07 /System/Library/PrivateFrameworks/MobileAccessoryUpdater.framework/XPCServices/UARPUpdaterServiceDisplay.xpc/Contents/MacOS/UARPUpdaterServiceDisplay
    0  6670     1   0 21Dec24 ??         0:03.88 /usr/libexec/wifivelocityd
  504  6802     1   0 21Dec24 ??         0:11.01 /usr/libexec/SidecarRelay
  504  6803     1   0 21Dec24 ??        11:57.64 /System/Library/CoreServices/UniversalControl.app/Contents/MacOS/UniversalControl
  504  6804     1   0 21Dec24 ??         0:01.71 /usr/sbin/BTLEServerAgent
  504  6947     1   0 21Dec24 ??         0:12.79 /System/Library/CoreServices/appplaceholdersyncd
  504  6990     1   0 21Dec24 ??         0:09.83 /System/Library/PrivateFrameworks/StreamingZip.framework/Versions/A/XPCServices/com.apple.StreamingUnzipService.xpc/Contents/MacOS/com.apple.StreamingUnzipService
  504  7337     1   0 21Dec24 ??         0:08.39 /System/Library/Frameworks/LocalAuthentication.framework/Support/coreautha.bundle/Contents/MacOS/coreautha
    0  7349     1   0 21Dec24 ??         0:00.02 /System/Library/PrivateFrameworks/WiFiPolicy.framework/XPCServices/WiFiCloudAssetsXPCService.xpc/Contents/MacOS/WiFiCloudAssetsXPCService
    0  8192     1   0 21Dec24 ??         0:00.15 /System/Library/CryptoTokenKit/com.apple.ifdreader.slotd/Contents/MacOS/com.apple.ifdreader
  504  8193     1   0 21Dec24 ??         0:04.09 /System/Library/PrivateFrameworks/MobileDevice.framework/Resources/MobileDeviceUpdater.app/Contents/MacOS/MobileDeviceUpdater
  504  8195     1   0 21Dec24 ??         0:00.07 /usr/libexec/USBAgent
  504  8198     1   0 21Dec24 ??         0:00.10 /Library/Apple/System/Library/PrivateFrameworks/MobileDevice.framework/Versions/A/XPCServices/MDRemoteServiceSupport.xpc/Contents/MacOS/MDRemoteServiceSupport
  504  8213     1   0 21Dec24 ??        18:48.62 /System/Library/Frameworks/VideoToolbox.framework/Versions/A/XPCServices/VTDecoderXPCService.xpc/Contents/MacOS/VTDecoderXPCService
  504  8214     1   0 21Dec24 ??         0:00.07 /System/Library/Frameworks/Metal.framework/Versions/A/XPCServices/MTLCompilerService.xpc/Contents/MacOS/MTLCompilerService
  504  8336     1   0 Sun12PM ??         0:03.85 /System/Library/CoreServices/OSDUIHelper.app/Contents/MacOS/OSDUIHelper
  504  8588     1   0 Sat10PM ??         0:00.30 /System/Library/PrivateFrameworks/IMDPersistence.framework/IMAutomaticHistoryDeletionAgent.app/Contents/MacOS/IMAutomaticHistoryDeletionAgent
  504  9504  5912   0 21Dec24 ??         1:55.60 /Applications/Google Chrome.app/Contents/Frameworks/Google Chrome Framework.framework/Versions/131.0.6778.205/Helpers/Google Chrome Helper.app/Contents/MacOS/Google Chrome Helper --type=utility --utility-sub-type=audio.mojom.AudioService --lang=en-US --service-sandbox-type=audio --message-loop-type-ui --string-annotations --shared-files --field-trial-handle=1718379636,r,7761031812746268102,8910257349932112331,262144 --variations-seed-version=20241219-130728.147000 --seatbelt-client=218
  504  9505  5912   0 21Dec24 ??         0:21.85 /Applications/Google Chrome.app/Contents/Frameworks/Google Chrome Framework.framework/Versions/131.0.6778.205/Helpers/Google Chrome Helper (Plugin).app/Contents/MacOS/Google Chrome Helper (Plugin) --type=utility --utility-sub-type=video_capture.mojom.VideoCaptureService --lang=en-US --service-sandbox-type=none --message-loop-type-ui --string-annotations --shared-files --field-trial-handle=1718379636,r,7761031812746268102,8910257349932112331,262144 --variations-seed-version=20241219-130728.147000
  504  9526     1   0 21Dec24 ??         0:05.62 /System/Library/CoreServices/Dock.app/Contents/XPCServices/DockHelper.xpc/Contents/MacOS/DockHelper
  504  9541     1   0 21Dec24 ??         0:00.09 /System/Library/Frameworks/VideoToolbox.framework/Versions/A/XPCServices/VTEncoderXPCService.xpc/Contents/MacOS/VTEncoderXPCService
  504 10644     1   0 21Dec24 ??         6:25.16 /System/Library/Frameworks/Contacts.framework/Support/contactsd
  504 10757     1   0 21Dec24 ??         0:00.03 /System/Library/PrivateFrameworks/ToneLibrary.framework/Versions/A/XPCServices/com.apple.tonelibraryd.xpc/Contents/MacOS/com.apple.tonelibraryd
    0 10758     1   0 21Dec24 ??         0:00.05 /System/Library/Frameworks/AudioToolbox.framework/XPCServices/com.apple.audio.SandboxHelper.xpc/Contents/MacOS/com.apple.audio.SandboxHelper
  504 10838     1   0 21Dec24 ??         0:00.06 /System/Library/Frameworks/AudioToolbox.framework/XPCServices/com.apple.audio.SandboxHelper.xpc/Contents/MacOS/com.apple.audio.SandboxHelper
  504 10849     1   0 21Dec24 ??         2:55.24 /System/Library/CoreServices/Siri.app/Contents/MacOS/Siri launchd
  504 10850     1   0 21Dec24 ??         0:12.74 /System/Library/PrivateFrameworks/CoreEmbeddedSpeechRecognition.framework/Versions/A/XPCServices/com.apple.siri.embeddedspeech.xpc/Contents/MacOS/com.apple.siri.embeddedspeech
  504 10853     1   0 21Dec24 ??         0:38.05 /System/Library/CoreServices/Siri.app/Contents/XPCServices/SiriNCService.xpc/Contents/MacOS/SiriNCService
  504 10857     1   0 21Dec24 ??         0:17.17 /System/Library/PrivateFrameworks/AssistantServices.framework/Versions/A/Support/assistant_service
  504 10862     1   0 21Dec24 ??         0:00.09 /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Resources/storeaccountd
  504 10943     1   0 21Dec24 ??         0:00.62 /System/Library/PrivateFrameworks/SiriTTSService.framework/Versions/A/XPCServices/com.apple.SiriTTSService.TrialProxy.xpc/Contents/MacOS/com.apple.SiriTTSService.TrialProxy
  504 10946     1   0 21Dec24 ??         0:00.02 /System/Library/PrivateFrameworks/SafariFoundation.framework/Versions/A/XPCServices/CredentialProviderExtensionHelper.xpc/Contents/MacOS/CredentialProviderExtensionHelper
  504 11195     1   0 Wed10AM ??         0:00.04 /System/Library/Frameworks/Metal.framework/Versions/A/XPCServices/MTLCompilerService.xpc/Contents/MacOS/MTLCompilerService
  504 11483     1   0 21Dec24 ??         0:00.02 /System/Library/Frameworks/Metal.framework/Versions/A/XPCServices/MTLCompilerService.xpc/Contents/MacOS/MTLCompilerService
  504 11484     1   0 21Dec24 ??         0:00.02 /System/Library/Frameworks/Metal.framework/Versions/A/XPCServices/MTLCompilerService.xpc/Contents/MacOS/MTLCompilerService
  504 11711     1   0 21Dec24 ??         0:00.14 /System/Library/PrivateFrameworks/XprotectFramework.framework/Versions/A/XPCServices/XprotectService.xpc/Contents/MacOS/XprotectService
  504 11712     1   0 21Dec24 ??         0:00.08 /System/Library/Frameworks/Metal.framework/Versions/A/XPCServices/MTLCompilerService.xpc/Contents/MacOS/MTLCompilerService
  504 11713     1   0 21Dec24 ??         0:00.02 /System/Library/Frameworks/Metal.framework/Versions/A/XPCServices/MTLCompilerService.xpc/Contents/MacOS/MTLCompilerService
  504 12734     1   0 21Dec24 ??         0:15.63 /System/Library/Frameworks/Metal.framework/Versions/A/XPCServices/MTLCompilerService.xpc/Contents/MacOS/MTLCompilerService
  504 12735     1   0 21Dec24 ??         0:03.10 /System/Library/Frameworks/Translation.framework/translationd
    0 15796     1   0 Sat10PM ??         0:01.29 /Library/Application Support/Citrix Receiver/ctxworkspaceupdater
  504 17933     1   0 21Dec24 ??         0:05.55 /System/Library/Frameworks/AppKit.framework/Versions/C/XPCServices/ThemeWidgetControlViewService.xpc/Contents/MacOS/ThemeWidgetControlViewService
  504 19845     1   0 21Dec24 ??         0:00.27 /System/Library/PrivateFrameworks/MessagesBlastDoorSupport.framework/Versions/A/XPCServices/MessagesBlastDoorService.xpc/Contents/MacOS/MessagesBlastDoorService
  504 19846     1   0 21Dec24 ??         0:03.71 /System/Library/PrivateFrameworks/DocumentUnderstanding.framework/Support/textunderstandingd
  504 19847     1   0 21Dec24 ??         0:00.02 /System/Library/Frameworks/AudioToolbox.framework/XPCServices/com.apple.audio.SandboxHelper.xpc/Contents/MacOS/com.apple.audio.SandboxHelper
  301 21066     1   0 21Dec24 ??         0:17.72 /System/Library/ExtensionKit/Extensions/TGOnDeviceInferenceProviderService.appex/Contents/MacOS/TGOnDeviceInferenceProviderService
  301 21067     1   0 21Dec24 ??         1:57.91 /usr/sbin/distnoted agent
  301 21074     1   0 21Dec24 ??         0:02.79 /System/Library/ExtensionKit/Extensions/TGOnDeviceInferenceProviderService.appex/Contents/MacOS/TGOnDeviceInferenceProviderService
  504 21075     1   0 21Dec24 ??         0:00.17 /usr/libexec/feedbackd
  504 21079     1   0 21Dec24 ??         0:00.02 /System/Library/Frameworks/AudioToolbox.framework/XPCServices/com.apple.audio.SandboxHelper.xpc/Contents/MacOS/com.apple.audio.SandboxHelper
  504 21094     1   0 21Dec24 ??         0:00.14 /System/Library/Frameworks/Metal.framework/Versions/A/XPCServices/MTLCompilerService.xpc/Contents/MacOS/MTLCompilerService
  504 21095     1   0 21Dec24 ??         0:00.04 /System/Library/Frameworks/Metal.framework/Versions/A/XPCServices/MTLCompilerService.xpc/Contents/MacOS/MTLCompilerService
  504 21102     1   0 21Dec24 ??         0:00.08 /System/iOSSupport/System/Library/PrivateFrameworks/IMTranscoding.framework/XPCServices/IMTranscoderAgent.xpc/Contents/MacOS/IMTranscoderAgent
  504 21103     1   0 21Dec24 ??         0:00.06 /System/Library/PrivateFrameworks/MessagesBlastDoorSupport.framework/Versions/A/XPCServices/MessagesBlastDoorService.xpc/Contents/MacOS/MessagesBlastDoorService
  504 21122     1   0 21Dec24 ??         0:00.16 /System/Library/PrivateFrameworks/CoreSuggestions.framework/Versions/A/Support/reversetemplated
  282 21425     1   0 21Dec24 ??        47:21.15 /usr/libexec/trustd
  504 21546     1   0 21Dec24 ??         1:23.11 /System/Library/Frameworks/AppKit.framework/Versions/C/XPCServices/com.apple.appkit.xpc.openAndSavePanelService.xpc/Contents/MacOS/com.apple.appkit.xpc.openAndSavePanelService
  504 21547     1   0 21Dec24 ??         0:02.42 /System/Library/Frameworks/QuickLookUI.framework/Versions/A/XPCServices/QuickLookUIService.xpc/Contents/MacOS/QuickLookUIService
  504 21559     1   0 21Dec24 ??         0:00.03 /System/Library/PrivateFrameworks/CSExattrCrypto.framework/Versions/A/XPCServices/CSExattrCryptoService.xpc/Contents/MacOS/CSExattrCryptoService
    0 21712     1   0 21Dec24 ??         0:00.24 /System/Library/PrivateFrameworks/CoreAccessories.framework/Support/accessoryd
  278 21713     1   0 21Dec24 ??         0:00.18 /System/Library/PrivateFrameworks/CoreSpeech.framework/Versions/A/XPCServices/CoreSpeechXPC.xpc/Contents/MacOS/CoreSpeechXPC
  504 21714     1   0 21Dec24 ??         0:05.94 /System/Applications/Messages.app/Contents/PlugIns/Messages Assistant Extension.appex/Contents/MacOS/Messages Assistant Extension -AppleLanguages ("en-US", "zh-Hans-US", "zh-Hant-US")
  504 21729     1   0 21Dec24 ??         0:01.23 /System/Library/PrivateFrameworks/Stickers.framework/Support/stickersd
  504 21730     1   0 21Dec24 ??         0:00.02 /System/Library/PrivateFrameworks/CharacterPicker.framework/Versions/A/XPCServices/com.apple.CharacterPicker.FileService.xpc/Contents/MacOS/com.apple.CharacterPicker.FileService
    0 21825     1   0 21Dec24 ??         0:00.05 /System/Library/Frameworks/Metal.framework/Versions/A/XPCServices/MTLCompilerService.xpc/Contents/MacOS/MTLCompilerService
  504 21846     1   0 21Dec24 ??         0:00.03 /System/Library/Frameworks/Metal.framework/Versions/A/XPCServices/MTLCompilerService.xpc/Contents/MacOS/MTLCompilerService
  504 21847     1   0 21Dec24 ??         0:00.03 /System/Library/Frameworks/Metal.framework/Versions/A/XPCServices/MTLCompilerService.xpc/Contents/MacOS/MTLCompilerService
  504 22974     1   0 Tue09PM ??         0:00.05 /System/Library/CoreServices/Setup Assistant.app/Contents/Resources/mbuseragent
  257 22985     1   0 Tue09PM ??         0:00.06 /usr/libexec/DataDetectorsSourceAccess
  504 23080     1   0 21Dec24 ??         0:04.66 /System/Library/PrivateFrameworks/Noticeboard.framework/Versions/A/Resources/nbagent.app/Contents/MacOS/nbagent
    0 23081     1   0 21Dec24 ??         0:00.08 /System/Library/PrivateFrameworks/Noticeboard.framework/Versions/A/Resources/nbstated
  504 23523     1   0 Mon03PM ??         0:00.33 /System/Library/PrivateFrameworks/MessagesBlastDoorSupport.framework/Versions/A/XPCServices/MessagesBlastDoorService.xpc/Contents/MacOS/MessagesBlastDoorService
  504 23524     1   0 Mon03PM ??         0:00.05 /System/Library/Frameworks/AudioToolbox.framework/XPCServices/com.apple.audio.SandboxHelper.xpc/Contents/MacOS/com.apple.audio.SandboxHelper
  504 23906     1   0 Fri04PM ??         0:02.07 /System/Library/PrivateFrameworks/UIFoundation.framework/Versions/A/XPCServices/nsattributedstringagent.xpc/Contents/MacOS/nsattributedstringagent
  504 25729  5947   0 Fri04PM ??         0:00.34 /Applications/Adobe Acrobat DC/Adobe Acrobat.app/Contents/Frameworks/AcroCEF Helper (Renderer).app/Contents/MacOS/AcroCEF Helper (Renderer) --type=renderer --log-severity=disable --user-agent-product=AcrobatServices/24.5.20320 Chrome/105.0.0.0 --user-data-dir=/Users/huazhou/Library/Application Support/Adobe/AcroCef/DC/Acrobat/UserData --log-file=/Users/huazhou/Library/Logs/AcroCEF_debug.log --touch-events=enabled --lang=en-US --num-raster-threads=4 --enable-zero-copy --enable-gpu-memory-buffer-compositor-resources --enable-main-frame-before-activation --renderer-client-id=10 --launch-time-ticks=228774652952 --shared-files --field-trial-handle=1718379636,r,16886317359951895707,15443547768258620674,131072 --disable-features=BackForwardCache --seatbelt-client=29
  504 25732     1   0 Fri04PM ??         0:01.25 /System/Library/Frameworks/VideoToolbox.framework/Versions/A/XPCServices/VTEncoderXPCService.xpc/Contents/MacOS/VTEncoderXPCService
  278 25957     1   0 21Dec24 ??         0:03.38 /System/Library/PrivateFrameworks/MobileAccessoryUpdater.framework/XPCServices/UARPUpdaterServiceUSBPD.xpc/Contents/MacOS/UARPUpdaterServiceUSBPD
  504 26856     1   0  4:16PM ??         0:00.13 /System/Library/PrivateFrameworks/CoreParsec.framework/parsec-fbf
    0 27011     1   0  4:18PM ??         0:00.48 /Library/Application Support/JAMF/Remote Assist/jamfRemoteAssistConnector /console
    0 27140     1   0  4:19PM ??         0:00.19 /System/Library/CryptoTokenKit/usbsmartcardreaderd.slotd/Contents/MacOS/usbsmartcardreaderd
  504 27147     1   0  4:19PM ??         0:00.25 /System/Library/Frameworks/CryptoTokenKit.framework/ctkbind.app/Contents/MacOS/ctkbind
  504 27391     1   0  4:21PM ??         0:00.14 /System/Library/PrivateFrameworks/UniversalAccess.framework/Versions/A/Resources/universalAccessAuthWarn.app/Contents/MacOS/universalAccessAuthWarn launchd -s
  222 28902     1   0  5:00PM ??         0:00.09 /usr/sbin/netbiosd
  504 29855     1   0  5:14PM ??         0:01.38 /Applications/Adobe Acrobat DC/Adobe Acrobat.app/Contents/Frameworks/AdobeCrashReporter.framework/Versions/A/Adobe Crash Processor.app/Contents/MacOS/Adobe Crash Processor
  504 29935     1   0  5:18PM ??         0:00.22 /System/Library/PrivateFrameworks/IMTransferServices.framework/IMTransferAgent.app/Contents/MacOS/IMTransferAgent
  504 30160     1   0 21Dec24 ??         0:00.47 /usr/libexec/dprivacyd
  504 30204     1   0 21Dec24 ??         0:00.09 /Library/Apple/System/Library/CoreServices/XProtect.app/Contents/MacOS/XProtect
  504 30280     1   0  5:20PM ??         0:00.06 /System/Library/CoreServices/rcd.app/Contents/MacOS/rcd
  504 30685     1   0 21Dec24 ??         0:00.02 /System/Library/Frameworks/AudioToolbox.framework/XPCServices/com.apple.audio.SandboxHelper.xpc/Contents/MacOS/com.apple.audio.SandboxHelper
  504 30698     1   0 21Dec24 ??         1:31.20 /System/Library/Frameworks/VideoToolbox.framework/Versions/A/XPCServices/VTDecoderXPCService.xpc/Contents/MacOS/VTDecoderXPCService
  504 31403     1   0  5:26PM ??         0:11.74 /Applications/RStudio.app/Contents/MacOS/RStudio
  504 31409 31403   0  5:26PM ??         0:04.10 /Applications/RStudio.app/Contents/Frameworks/RStudio Helper (GPU).app/Contents/MacOS/RStudio Helper (GPU) --type=gpu-process --user-data-dir=/Users/huazhou/Library/Application Support/RStudio --gpu-preferences=WAAAAAAAAAAgAAAEAAAAAAAAAAAAAAAAAABgAAEAAAA4AAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAcAAAAAAABoBwAAAAAAAHgCAABOAAAAcAIAAAAAAAB4AgAAAAAAAIACAAAAAAAAiAIAAAAAAACQAgAAAAAAAJgCAAAAAAAAoAIAAAAAAACoAgAAAAAAALACAAAAAAAAuAIAAAAAAADAAgAAAAAAAMgCAAAAAAAA0AIAAAAAAADYAgAAAAAAAOACAAAAAAAA6AIAAAAAAADwAgAAAAAAAPgCAAAAAAAAAAMAAAAAAAAIAwAAAAAAABADAAAAAAAAGAMAAAAAAAAgAwAAAAAAACgDAAAAAAAAMAMAAAAAAAA4AwAAAAAAAEADAAAAAAAASAMAAAAAAABQAwAAAAAAAFgDAAAAAAAAYAMAAAAAAABoAwAAAAAAAHADAAAAAAAAeAMAAAAAAACAAwAAAAAAAIgDAAAAAAAAkAMAAAAAAACYAwAAAAAAAKADAAAAAAAAqAMAAAAAAACwAwAAAAAAALgDAAAAAAAAwAMAAAAAAADIAwAAAAAAANADAAAAAAAA2AMAAAAAAADgAwAAAAAAAOgDAAAAAAAA8AMAAAAAAAD4AwAAAAAAAAAEAAAAAAAACAQAAAAAAAAQBAAAAAAAABgEAAAAAAAAIAQAAAAAAAAoBAAAAAAAADAEAAAAAAAAOAQAAAAAAABABAAAAAAAAEgEAAAAAAAAUAQAAAAAAABYBAAAAAAAAGAEAAAAAAAAaAQAAAAAAABwBAAAAAAAAHgEAAAAAAAAgAQAAAAAAACIBAAAAAAAAJAEAAAAAAAAmAQAAAAAAACgBAAAAAAAAKgEAAAAAAAAsAQAAAAAAAC4BAAAAAAAAMAEAAAAAAAAyAQAAAAAAADQBAAAAAAAANgEAAAAAAAAEAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAEAAAAQAAAAAAAAAAAAAAACAAAAEAAAAAAAAAAAAAAAAwAAABAAAAAAAAAAAAAAAAYAAAAQAAAAAAAAAAAAAAAHAAAAEAAAAAAAAAAAAAAACAAAABAAAAAAAAAAAAAAAAkAAAAQAAAAAAAAAAAAAAALAAAAEAAAAAAAAAAAAAAADAAAABAAAAAAAAAAAAAAAA4AAAAQAAAAAAAAAAAAAAAPAAAAEAAAAAAAAAAAAAAAEAAAABAAAAAAAAAAAQAAAAAAAAAQAAAAAAAAAAEAAAABAAAAEAAAAAAAAAABAAAAAgAAABAAAAAAAAAAAQAAAAMAAAAQAAAAAAAAAAEAAAAGAAAAEAAAAAAAAAABAAAABwAAABAAAAAAAAAAAQAAAAgAAAAQAAAAAAAAAAEAAAAJAAAAEAAAAAAAAAABAAAACwAAABAAAAAAAAAAAQAAAAwAAAAQAAAAAAAAAAEAAAAOAAAAEAAAAAAAAAABAAAADwAAABAAAAAAAAAAAQAAABAAAAAQAAAAAAAAAAQAAAAAAAAAEAAAAAAAAAAEAAAAAQAAABAAAAAAAAAABAAAAAIAAAAQAAAAAAAAAAQAAAADAAAAEAAAAAAAAAAEAAAABgAAABAAAAAAAAAABAAAAAcAAAAQAAAAAAAAAAQAAAAIAAAAEAAAAAAAAAAEAAAACQAAABAAAAAAAAAABAAAAAsAAAAQAAAAAAAAAAQAAAAMAAAAEAAAAAAAAAAEAAAADgAAABAAAAAAAAAABAAAAA8AAAAQAAAAAAAAAAQAAAAQAAAAEAAAAAAAAAAIAAAAAAAAABAAAAAAAAAACAAAAAEAAAAQAAAAAAAAAAgAAAACAAAAEAAAAAAAAAAIAAAAAwAAABAAAAAAAAAACAAAAAYAAAAQAAAAAAAAAAgAAAAHAAAAEAAAAAAAAAAIAAAACAAAABAAAAAAAAAACAAAAAkAAAAQAAAAAAAAAAgAAAALAAAAEAAAAAAAAAAIAAAADAAAABAAAAAAAAAACAAAAA4AAAAQAAAAAAAAAAgAAAAPAAAAEAAAAAAAAAAIAAAAEAAAABAAAAAAAAAACQAAAAAAAAAQAAAAAAAAAAkAAAABAAAAEAAAAAAAAAAJAAAAAgAAABAAAAAAAAAACQAAAAMAAAAQAAAAAAAAAAkAAAAGAAAAEAAAAAAAAAAJAAAABwAAABAAAAAAAAAACQAAAAgAAAAQAAAAAAAAAAkAAAAJAAAAEAAAAAAAAAAJAAAACwAAABAAAAAAAAAACQAAAAwAAAAQAAAAAAAAAAkAAAAOAAAAEAAAAAAAAAAJAAAADwAAABAAAAAAAAAACQAAABAAAAAQAAAAAAAAAAsAAAAAAAAAEAAAAAAAAAALAAAAAQAAABAAAAAAAAAACwAAAAIAAAAQAAAAAAAAAAsAAAADAAAAEAAAAAAAAAALAAAABgAAABAAAAAAAAAACwAAAAcAAAAQAAAAAAAAAAsAAAAIAAAAEAAAAAAAAAALAAAACQAAABAAAAAAAAAACwAAAAsAAAAQAAAAAAAAAAsAAAAMAAAAEAAAAAAAAAALAAAADgAAABAAAAAAAAAACwAAAA8AAAAQAAAAAAAAAAsAAAAQAAAACAAAAAAAAAAIAAAAAAAAAA== --shared-files --field-trial-handle=1718379636,r,10136170328207555156,5053220614446933298,262144 --enable-features=ScreenCaptureKitPickerScreen,ScreenCaptureKitStreamPickerSonoma --disable-features=SpareRendererForSitePerProcess --variations-seed-version --seatbelt-client=31
  504 31410 31403   0  5:26PM ??         0:00.75 /Applications/RStudio.app/Contents/Frameworks/RStudio Helper.app/Contents/MacOS/RStudio Helper --type=utility --utility-sub-type=network.mojom.NetworkService --lang=en-US --service-sandbox-type=network --user-data-dir=/Users/huazhou/Library/Application Support/RStudio --shared-files --field-trial-handle=1718379636,r,10136170328207555156,5053220614446933298,262144 --enable-features=ScreenCaptureKitPickerScreen,ScreenCaptureKitStreamPickerSonoma --disable-features=SpareRendererForSitePerProcess --variations-seed-version --seatbelt-client=32
  504 31426 31403   0  5:26PM ??         0:38.21 /Applications/RStudio.app/Contents/Resources/app/bin/rsession-arm64 --config-file none --program-mode desktop --www-port 41217 --launcher-token 201fbf36 --show-help-home 1
  504 31437 31403   0  5:26PM ??         0:18.55 /Applications/RStudio.app/Contents/Frameworks/RStudio Helper (Renderer).app/Contents/MacOS/RStudio Helper (Renderer) --type=renderer --user-data-dir=/Users/huazhou/Library/Application Support/RStudio --app-path=/Applications/RStudio.app/Contents/Resources/app --enable-sandbox --lang=en-US --num-raster-threads=4 --enable-zero-copy --enable-gpu-memory-buffer-compositor-resources --enable-main-frame-before-activation --renderer-client-id=4 --time-ticks-at-unix-epoch=-1735186239400617 --launch-time-ticks=249355664497 --shared-files --field-trial-handle=1718379636,r,10136170328207555156,5053220614446933298,262144 --enable-features=ScreenCaptureKitPickerScreen,ScreenCaptureKitStreamPickerSonoma --disable-features=SpareRendererForSitePerProcess --variations-seed-version --api-keys=desktopInfo|desktop|desktopMenuCallback --seatbelt-client=60
  504 31453 31426   0  5:26PM ??         0:02.30 /Applications/RStudio.app/Contents/Resources/app/bin/node/bin/node /Users/huazhou/.cache/rstudio/copilot/dist/agent.js
  504 31463 31426   0  5:26PM ??         0:01.01 /Applications/RStudio.app/Contents/Resources/app/bin/node/bin/node /Users/huazhou/.cache/rstudio/copilot/dist/agent.js
  504 31682  5912   0  5:26PM ??         0:01.43 /Applications/Google Chrome.app/Contents/Frameworks/Google Chrome Framework.framework/Versions/131.0.6778.205/Helpers/Google Chrome Helper (Renderer).app/Contents/MacOS/Google Chrome Helper (Renderer) --type=renderer --string-annotations --extension-process --enable-dinosaur-easter-egg-alt-images --lang=en-US --num-raster-threads=4 --enable-zero-copy --enable-gpu-memory-buffer-compositor-resources --enable-main-frame-before-activation --renderer-client-id=6634 --time-ticks-at-unix-epoch=-1734801999190337 --launch-time-ticks=249379215341 --shared-files --field-trial-handle=1718379636,r,7761031812746268102,8910257349932112331,262144 --variations-seed-version=20241219-130728.147000 --seatbelt-client=202
  504 31683  5912   0  5:26PM ??         0:00.79 /Applications/Google Chrome.app/Contents/Frameworks/Google Chrome Framework.framework/Versions/131.0.6778.205/Helpers/Google Chrome Helper (Renderer).app/Contents/MacOS/Google Chrome Helper (Renderer) --type=renderer --string-annotations --extension-process --enable-dinosaur-easter-egg-alt-images --lang=en-US --num-raster-threads=4 --enable-zero-copy --enable-gpu-memory-buffer-compositor-resources --enable-main-frame-before-activation --renderer-client-id=6635 --time-ticks-at-unix-epoch=-1734801999190337 --launch-time-ticks=249379216219 --shared-files --field-trial-handle=1718379636,r,7761031812746268102,8910257349932112331,262144 --variations-seed-version=20241219-130728.147000 --seatbelt-client=210
  504 31684  5912   0  5:26PM ??         0:01.48 /Applications/Google Chrome.app/Contents/Frameworks/Google Chrome Framework.framework/Versions/131.0.6778.205/Helpers/Google Chrome Helper (Renderer).app/Contents/MacOS/Google Chrome Helper (Renderer) --type=renderer --string-annotations --extension-process --enable-dinosaur-easter-egg-alt-images --lang=en-US --num-raster-threads=4 --enable-zero-copy --enable-gpu-memory-buffer-compositor-resources --enable-main-frame-before-activation --renderer-client-id=6636 --time-ticks-at-unix-epoch=-1734801999190337 --launch-time-ticks=249379216981 --shared-files --field-trial-handle=1718379636,r,7761031812746268102,8910257349932112331,262144 --variations-seed-version=20241219-130728.147000 --seatbelt-client=222
  504 31685  5912   0  5:26PM ??         0:03.54 /Applications/Google Chrome.app/Contents/Frameworks/Google Chrome Framework.framework/Versions/131.0.6778.205/Helpers/Google Chrome Helper (Renderer).app/Contents/MacOS/Google Chrome Helper (Renderer) --type=renderer --string-annotations --extension-process --enable-dinosaur-easter-egg-alt-images --lang=en-US --num-raster-threads=4 --enable-zero-copy --enable-gpu-memory-buffer-compositor-resources --enable-main-frame-before-activation --renderer-client-id=6637 --time-ticks-at-unix-epoch=-1734801999190337 --launch-time-ticks=249379217941 --shared-files --field-trial-handle=1718379636,r,7761031812746268102,8910257349932112331,262144 --variations-seed-version=20241219-130728.147000 --seatbelt-client=234
  504 31687  5912   0  5:26PM ??         0:15.85 /Applications/Google Chrome.app/Contents/Frameworks/Google Chrome Framework.framework/Versions/131.0.6778.205/Helpers/Google Chrome Helper (Renderer).app/Contents/MacOS/Google Chrome Helper (Renderer) --type=renderer --string-annotations --enable-dinosaur-easter-egg-alt-images --lang=en-US --num-raster-threads=4 --enable-zero-copy --enable-gpu-memory-buffer-compositor-resources --enable-main-frame-before-activation --renderer-client-id=6639 --time-ticks-at-unix-epoch=-1734801999190337 --launch-time-ticks=249379252651 --shared-files --field-trial-handle=1718379636,r,7761031812746268102,8910257349932112331,262144 --variations-seed-version=20241219-130728.147000 --seatbelt-client=264
  504 31701  5912   0  5:26PM ??         0:01.48 /Applications/Google Chrome.app/Contents/Frameworks/Google Chrome Framework.framework/Versions/131.0.6778.205/Helpers/Google Chrome Helper (Renderer).app/Contents/MacOS/Google Chrome Helper (Renderer) --type=renderer --string-annotations --enable-dinosaur-easter-egg-alt-images --lang=en-US --num-raster-threads=4 --enable-zero-copy --enable-gpu-memory-buffer-compositor-resources --enable-main-frame-before-activation --renderer-client-id=6647 --time-ticks-at-unix-epoch=-1734801999190337 --launch-time-ticks=249379594634 --shared-files --field-trial-handle=1718379636,r,7761031812746268102,8910257349932112331,262144 --variations-seed-version=20241219-130728.147000 --seatbelt-client=201
  504 31702  5912   0  5:26PM ??         0:08.44 /Applications/Google Chrome.app/Contents/Frameworks/Google Chrome Framework.framework/Versions/131.0.6778.205/Helpers/Google Chrome Helper (Renderer).app/Contents/MacOS/Google Chrome Helper (Renderer) --type=renderer --string-annotations --enable-dinosaur-easter-egg-alt-images --lang=en-US --num-raster-threads=4 --enable-zero-copy --enable-gpu-memory-buffer-compositor-resources --enable-main-frame-before-activation --renderer-client-id=6648 --time-ticks-at-unix-epoch=-1734801999190337 --launch-time-ticks=249379614096 --shared-files --field-trial-handle=1718379636,r,7761031812746268102,8910257349932112331,262144 --variations-seed-version=20241219-130728.147000 --seatbelt-client=202
  504 31709  5912   0  5:27PM ??         0:22.16 /Applications/Google Chrome.app/Contents/Frameworks/Google Chrome Framework.framework/Versions/131.0.6778.205/Helpers/Google Chrome Helper (Renderer).app/Contents/MacOS/Google Chrome Helper (Renderer) --type=renderer --string-annotations --enable-dinosaur-easter-egg-alt-images --lang=en-US --num-raster-threads=4 --enable-zero-copy --enable-gpu-memory-buffer-compositor-resources --enable-main-frame-before-activation --renderer-client-id=6640 --time-ticks-at-unix-epoch=-1734801999190337 --launch-time-ticks=249382264920 --shared-files --field-trial-handle=1718379636,r,7761031812746268102,8910257349932112331,262144 --variations-seed-version=20241219-130728.147000 --seatbelt-client=165
  504 31710  5912   0  5:27PM ??         0:01.22 /Applications/Google Chrome.app/Contents/Frameworks/Google Chrome Framework.framework/Versions/131.0.6778.205/Helpers/Google Chrome Helper (Renderer).app/Contents/MacOS/Google Chrome Helper (Renderer) --type=renderer --string-annotations --enable-dinosaur-easter-egg-alt-images --lang=en-US --num-raster-threads=4 --enable-zero-copy --enable-gpu-memory-buffer-compositor-resources --enable-main-frame-before-activation --renderer-client-id=6650 --time-ticks-at-unix-epoch=-1734801999190337 --launch-time-ticks=249382650293 --shared-files --field-trial-handle=1718379636,r,7761031812746268102,8910257349932112331,262144 --variations-seed-version=20241219-130728.147000 --seatbelt-client=141
  504 31712  5912   0  5:27PM ??         0:00.47 /Applications/Google Chrome.app/Contents/Frameworks/Google Chrome Framework.framework/Versions/131.0.6778.205/Helpers/Google Chrome Helper (Renderer).app/Contents/MacOS/Google Chrome Helper (Renderer) --type=renderer --string-annotations --enable-dinosaur-easter-egg-alt-images --lang=en-US --num-raster-threads=4 --enable-zero-copy --enable-gpu-memory-buffer-compositor-resources --enable-main-frame-before-activation --renderer-client-id=6652 --time-ticks-at-unix-epoch=-1734801999190337 --launch-time-ticks=249383415552 --shared-files --field-trial-handle=1718379636,r,7761031812746268102,8910257349932112331,262144 --variations-seed-version=20241219-130728.147000 --seatbelt-client=166
  504 31720  5912   0  5:27PM ??         0:00.62 /Applications/Google Chrome.app/Contents/Frameworks/Google Chrome Framework.framework/Versions/131.0.6778.205/Helpers/Google Chrome Helper (Renderer).app/Contents/MacOS/Google Chrome Helper (Renderer) --type=renderer --string-annotations --enable-dinosaur-easter-egg-alt-images --lang=en-US --num-raster-threads=4 --enable-zero-copy --enable-gpu-memory-buffer-compositor-resources --enable-main-frame-before-activation --renderer-client-id=6654 --time-ticks-at-unix-epoch=-1734801999190337 --launch-time-ticks=249385479954 --shared-files --field-trial-handle=1718379636,r,7761031812746268102,8910257349932112331,262144 --variations-seed-version=20241219-130728.147000 --seatbelt-client=142
  504 31750  5912   0  5:27PM ??         0:02.71 /Applications/Google Chrome.app/Contents/Frameworks/Google Chrome Framework.framework/Versions/131.0.6778.205/Helpers/Google Chrome Helper (Renderer).app/Contents/MacOS/Google Chrome Helper (Renderer) --type=renderer --string-annotations --enable-dinosaur-easter-egg-alt-images --lang=en-US --num-raster-threads=4 --enable-zero-copy --enable-gpu-memory-buffer-compositor-resources --enable-main-frame-before-activation --renderer-client-id=6668 --time-ticks-at-unix-epoch=-1734801999190337 --launch-time-ticks=249394139170 --shared-files --field-trial-handle=1718379636,r,7761031812746268102,8910257349932112331,262144 --variations-seed-version=20241219-130728.147000 --seatbelt-client=210
  504 31873     1   0  5:28PM ??         0:00.17 /System/Library/Frameworks/Metal.framework/Versions/A/XPCServices/MTLCompilerService.xpc/Contents/MacOS/MTLCompilerService
  504 32366  5912   0  5:31PM ??         0:00.06 /Applications/Google Chrome.app/Contents/Frameworks/Google Chrome Framework.framework/Versions/131.0.6778.205/Helpers/Google Chrome Helper (Renderer).app/Contents/MacOS/Google Chrome Helper (Renderer) --type=renderer --string-annotations --enable-dinosaur-easter-egg-alt-images --lang=en-US --num-raster-threads=4 --enable-zero-copy --enable-gpu-memory-buffer-compositor-resources --enable-main-frame-before-activation --renderer-client-id=6712 --time-ticks-at-unix-epoch=-1734801999190337 --launch-time-ticks=249621730078 --shared-files --field-trial-handle=1718379636,r,7761031812746268102,8910257349932112331,262144 --variations-seed-version=20241219-130728.147000 --seatbelt-client=213
  504 32911     1   0  5:32PM ??         0:00.03 /System/Library/Frameworks/Metal.framework/Versions/A/XPCServices/MTLCompilerService.xpc/Contents/MacOS/MTLCompilerService
  504 32944     1   0  5:32PM ??         0:00.15 /System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/mdworker_shared -s mdworker -c MDSImporterWorker -m com.apple.mdworker.shared
  504 33129     1   0  5:32PM ??         0:01.20 /Applications/Utilities/Adobe Creative Cloud Experience/CCXProcess/CCXProcess.app/Contents/MacOS/Creative Cloud Content Manager.node /Applications/Utilities/Adobe Creative Cloud Experience/CCXProcess/CCXProcess.app/Contents/MacOS/../js/main.js
  504 33151     1   0  5:33PM ??         0:00.10 /usr/libexec/biomesyncd
  504 33187     1   0  5:33PM ??         0:00.08 /System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/mdworker_shared -s mdworker -c MDSImporterWorker -m com.apple.mdworker.shared
  504 33188     1   0  5:33PM ??         0:00.08 /System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/mdworker_shared -s mdworker -c MDSImporterWorker -m com.apple.mdworker.shared
  504 33189     1   0  5:33PM ??         0:00.08 /System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/mdworker_shared -s mdworker -c MDSImporterWorker -m com.apple.mdworker.shared
  504 33190     1   0  5:33PM ??         0:00.08 /System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/mdworker_shared -s mdworker -c MDSImporterWorker -m com.apple.mdworker.shared
  504 33191     1   0  5:33PM ??         0:00.07 /System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/mdworker_shared -s mdworker -c MDSImporterWorker -m com.apple.mdworker.shared
  504 33192     1   0  5:33PM ??         0:00.07 /System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/mdworker_shared -s mdworker -c MDSImporterWorker -m com.apple.mdworker.shared
  504 33193     1   0  5:33PM ??         0:00.08 /System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/mdworker_shared -s mdworker -c MDSImporterWorker -m com.apple.mdworker.shared
  504 33194     1   0  5:33PM ??         0:00.08 /System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/mdworker_shared -s mdworker -c MDSImporterWorker -m com.apple.mdworker.shared
  504 33195     1   0  5:33PM ??         0:00.07 /System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/mdworker_shared -s mdworker -c MDSImporterWorker -m com.apple.mdworker.shared
  504 33196     1   0  5:33PM ??         0:00.08 /System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/mdworker_shared -s mdworker -c MDSImporterWorker -m com.apple.mdworker.shared
  504 33197     1   0  5:33PM ??         0:00.07 /System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/mdworker_shared -s mdworker -c MDSImporterWorker -m com.apple.mdworker.shared
  504 33198     1   0  5:33PM ??         0:00.07 /System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/mdworker_shared -s mdworker -c MDSImporterWorker -m com.apple.mdworker.shared
  504 33199     1   0  5:33PM ??         0:00.08 /System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/mdworker_shared -s mdworker -c MDSImporterWorker -m com.apple.mdworker.shared
  504 33200     1   0  5:33PM ??         0:00.11 /System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/mdworker_shared -s mdworker -c MDSImporterWorker -m com.apple.mdworker.shared
  504 33234 31426   0  5:33PM ??         0:00.01 bash /Applications/quarto/bin/quarto preview linux.qmd --to html --no-watch-inputs --no-browse
  504 33243 33234   0  5:33PM ??         0:00.50 /Applications/quarto/bin/tools/aarch64/deno run --unstable-ffi --unstable-kv --no-config --no-lock --allow-all --no-check --v8-flags=--enable-experimental-regexp-engine,--max-old-space-size=8192,--max-heap-size=8192 --importmap=/Applications/quarto/bin/vendor/import_map.json /Applications/quarto/bin/quarto.js preview linux.qmd --to html --no-watch-inputs --no-browse
  504 33244 33243   0  5:33PM ??         0:00.47 /Library/Frameworks/R.framework/Resources/bin/exec/R --no-echo --no-restore --file=/Applications/quarto/share/rmd/rmd.R
  504 33379 33244   0  5:33PM ??         0:00.00 sh -c 'bash'  -c 'ps -eaf' 2>&1
    0 33380 33379   0  5:33PM ??         0:00.00 ps -eaf
  504 40249     1   0  9:13PM ??         0:00.02 /System/Library/PrivateFrameworks/CoreEmbeddedSpeechRecognition.framework/Versions/A/XPCServices/com.apple.siri.embeddedspeech.xpc/Contents/MacOS/com.apple.siri.embeddedspeech
  504 40270     1   0 Tue12PM ??         0:00.06 /System/Library/Frameworks/VideoToolbox.framework/Versions/A/XPCServices/VTDecoderXPCService.xpc/Contents/MacOS/VTDecoderXPCService
  504 40331     1   0 Tue12PM ??         0:01.34 /System/Library/CoreServices/ControlCenter.app/Contents/XPCServices/ControlCenterHelper.xpc/Contents/MacOS/ControlCenterHelper
  504 41375     1   0 Tue12PM ??         0:00.26 /System/Library/PrivateFrameworks/IntelligenceFlowRuntime.framework/Versions/A/intelligenceflowd
  301 41376     1   0 Tue12PM ??         0:00.19 /System/Library/ExtensionKit/Extensions/TGOnDeviceInferenceProviderService.appex/Contents/MacOS/TGOnDeviceInferenceProviderService
  504 41377     1   0 Tue12PM ??         0:00.07 /System/Library/Frameworks/Metal.framework/Versions/A/XPCServices/MTLCompilerService.xpc/Contents/MacOS/MTLCompilerService
  504 41380     1   0 Tue12PM ??         0:00.62 /System/Library/PrivateFrameworks/IntelligenceFlowContextRuntime.framework/Versions/A/intelligencecontextd
  504 41381     1   0 Tue12PM ??         0:00.02 /System/Library/Frameworks/Metal.framework/Versions/A/XPCServices/MTLCompilerService.xpc/Contents/MacOS/MTLCompilerService
  504 41382     1   0 Tue12PM ??         0:03.02 /System/Library/PrivateFrameworks/WorkflowKit.framework/XPCServices/ShortcutsViewService.xpc/Contents/MacOS/ShortcutsViewService
  504 41388     1   0 Tue12PM ??         0:00.25 /System/Library/ExtensionKit/Extensions/SearchToolExtension.appex/Contents/MacOS/SearchToolExtension
  301 41389     1   0 Tue12PM ??         0:00.06 /System/Library/ExtensionKit/Extensions/PrivateMLClientInferenceProviderService.appex/Contents/MacOS/PrivateMLClientInferenceProviderService
  504 41390     1   0 Tue12PM ??         0:00.05 /System/Library/PrivateFrameworks/StocksKit.framework/XPCServices/StocksKitService.xpc/Contents/MacOS/StocksKitService
  504 42709     1   0 Sun04PM ??         0:00.08 /usr/bin/ssh-agent -l
  504 43229     1   0 Sun04PM ??         0:00.02 /System/Library/Frameworks/NetFS.framework/Versions/A/XPCServices/PlugInLibraryService.xpc/Contents/MacOS/PlugInLibraryService
  504 43397     1   0 Sun04PM ??         0:00.22 /System/Library/Frameworks/VideoToolbox.framework/Versions/A/XPCServices/VTDecoderXPCService.xpc/Contents/MacOS/VTDecoderXPCService
  504 43486     1   0 Sun04PM ??         0:00.01 /System/Library/PrivateFrameworks/KerberosHelper/Helpers/DiskUnmountWatcher
    0 43799     1   0 Sun04PM ??         0:00.06 /System/Library/PrivateFrameworks/PackageKit.framework/Versions/A/XPCServices/package_script_service.xpc/Contents/MacOS/package_script_service
  301 44663     1   0 Thu02PM ??         0:01.26 /System/Library/ExtensionKit/Extensions/VisualGenerationInference.appex/Contents/MacOS/VisualGenerationInference
  504 45545     1   0 Wed02PM ??         0:01.05 /Applications/Utilities/Adobe Sync/CoreSync/Core Sync.app/Contents/PlugIns/ACCFinderSync.appex/Contents/MacOS/ACCFinderSync -AppleLanguages ("en", "en-US", "zh-Hans-US", "zh-Hant-US")
  200 45548     1   0 Sun04AM ??         0:00.47 /usr/sbin/cfprefsd agent
  504 45549     1   0 Sun04AM ??         0:01.47 /System/Library/PrivateFrameworks/DeviceCheckInternal.framework/devicecheckd
  242 45568     1   0 Sun04AM ??         0:00.48 /usr/sbin/cfprefsd agent
  296 45574     1   0 Sun04AM ??         0:00.51 /usr/sbin/cfprefsd agent
  273 45575     1   0 Sun04AM ??         0:00.53 /usr/sbin/cfprefsd agent
  277 45577     1   0 Sun04AM ??         0:00.52 /usr/sbin/cfprefsd agent
  260 45579     1   0 Sun04AM ??         0:00.52 /usr/sbin/cfprefsd agent
  504 45726     1   0 Tue12PM ??         0:00.91 /System/Applications/Stocks.app/Contents/PlugIns/StocksWidget.appex/Contents/MacOS/StocksWidget
   33 47056     1   0 Tue01PM ??         0:00.38 /usr/sbin/cfprefsd agent
  504 50362     1   0 Sun05AM ??         0:00.10 /System/Library/PrivateFrameworks/BusinessChatService.framework/businessservicesd
  504 50368     1   0 Sun05AM ??         0:00.09 /System/Library/PrivateFrameworks/MessagesBlastDoorSupport.framework/Versions/A/XPCServices/MessagesBlastDoorService.xpc/Contents/MacOS/MessagesBlastDoorService
    0 51139     1   0 Wed03PM ??         0:00.03 /System/Library/PrivateFrameworks/RecoveryOS.framework/Versions/A/XPCServices/recoveryos_lockout_service.xpc/Contents/MacOS/recoveryos_lockout_service
    0 51141     1   0 Wed03PM ??         0:00.06 /System/Library/PrivateFrameworks/AssetCacheServicesExtensions.framework/XPCServices/AssetCacheManagerService.xpc/Contents/MacOS/AssetCacheManagerService
  504 51527     1   0 21Dec24 ??         0:00.21 /System/Library/PrivateFrameworks/MessagesBlastDoorSupport.framework/Versions/A/XPCServices/MessagesBlastDoorService.xpc/Contents/MacOS/MessagesBlastDoorService
    0 51997     1   0 Wed06PM ??         0:03.65 /System/Library/PrivateFrameworks/GeoServices.framework/Versions/A/XPCServices/com.apple.geod.xpc/Contents/MacOS/com.apple.geod
  504 52062     1   0 21Dec24 ??         1:57.99 /System/Library/PrivateFrameworks/FileProviderDaemon.framework/XPCServices/FPCKService.xpc/Contents/MacOS/FPCKService
  278 52863     1   0 21Dec24 ??         0:08.55 /System/Library/PrivateFrameworks/GeoServices.framework/Versions/A/XPCServices/com.apple.geod.xpc/Contents/MacOS/com.apple.geod
  278 52864     1   0 21Dec24 ??         0:00.54 /usr/libexec/secinitd
  278 52865     1   0 21Dec24 ??         0:00.55 /usr/sbin/cfprefsd agent
  278 52866     1   0 21Dec24 ??         0:01.77 /usr/libexec/trustd --agent
  278 52867     1   0 21Dec24 ??         0:00.18 /usr/libexec/containermanagerd --runmode=agent --user-container-mode=current --bundle-container-mode=proxy --system-container-mode=none
  504 53343     1   0 21Dec24 ??         0:00.36 /System/Applications/Mail.app/Contents/PlugIns/com.apple.mail.SpotlightIndexExtension.appex/Contents/MacOS/com.apple.mail.SpotlightIndexExtension -AppleLanguages ("en-US", "zh-Hans-US", "zh-Hant-US")
  504 54120     1   0 21Dec24 ??         0:00.87 /System/Library/PrivateFrameworks/GeoAnalytics.framework/geoanalyticsd
  504 55454     1   0 Sun11PM ??         0:02.63 /System/Library/PrivateFrameworks/RemoteViewServices.framework/XPCServices/com.apple.security.pboxd.xpc/Contents/MacOS/com.apple.security.pboxd
  301 55536     1   0 Sun06AM ??         0:00.48 /usr/sbin/cfprefsd agent
  504 55556     1   0 21Dec24 ??         0:03.54 /System/Library/PrivateFrameworks/PrivateCloudCompute.framework/privatecloudcomputed.app/Contents/MacOS/privatecloudcomputed
  504 55559     1   0 21Dec24 ??         0:00.48 /System/Library/PrivateFrameworks/CloudTelemetry.framework/Versions/A/XPCServices/CloudTelemetryService.xpc/Contents/MacOS/CloudTelemetryService
  504 55560     1   0 21Dec24 ??         0:00.02 /System/Library/Frameworks/NetFS.framework/Versions/A/XPCServices/PlugInLibraryService.xpc/Contents/MacOS/PlugInLibraryService
  504 55605     1   0 21Dec24 ??         0:00.05 /System/Library/Frameworks/AudioToolbox.framework/XPCServices/com.apple.audio.SandboxHelper.xpc/Contents/MacOS/com.apple.audio.SandboxHelper
  504 55828     1   0 21Dec24 ??         3:37.75 /System/Library/Frameworks/VideoToolbox.framework/Versions/A/XPCServices/VTDecoderXPCService.xpc/Contents/MacOS/VTDecoderXPCService
  504 55829     1   0 21Dec24 ??         0:00.10 /System/Library/Frameworks/AudioToolbox.framework/XPCServices/com.apple.audio.SandboxHelper.xpc/Contents/MacOS/com.apple.audio.SandboxHelper
    0 56166     1   0 21Dec24 ??         0:01.04 /System/Library/PrivateFrameworks/Categories.framework/Versions/A/XPCServices/CategoriesService.xpc/Contents/MacOS/CategoriesService
    0 56172     1   0 21Dec24 ??         0:00.07 /System/Library/PrivateFrameworks/ContextKit.framework/Versions/A/XPCServices/ContextService.xpc/Contents/MacOS/ContextService
  504 56292     1   0 21Dec24 ??        70:03.64 /System/Library/PrivateFrameworks/MediaAnalysisAccess.framework/Versions/A/XPCServices/mediaanalysisd-access.xpc/Contents/MacOS/mediaanalysisd-access
  504 56374     1   0 21Dec24 ??         0:00.06 /System/Library/Frameworks/Metal.framework/Versions/A/XPCServices/MTLCompilerService.xpc/Contents/MacOS/MTLCompilerService
  278 57378     1   0 Mon02AM ??         0:00.16 /System/Library/PrivateFrameworks/MobileAccessoryUpdater.framework/XPCServices/EAUpdaterService.xpc/Contents/MacOS/EAUpdaterService
  504 58989     1   0 Thu12AM ??         0:00.65 /System/Library/CoreServices/destinationd
  504 58990     1   0 Thu12AM ??         0:00.55 /System/Library/CoreServices/mapspushd
   33 59760     1   0 Mon07AM ??         0:10.28 /System/Library/PrivateFrameworks/AppStoreDaemon.framework/Support/appstored
  504 60682     1   0 21Dec24 ??         3:08.44 /System/Library/Frameworks/VideoToolbox.framework/Versions/A/XPCServices/VTEncoderXPCService.xpc/Contents/MacOS/VTEncoderXPCService
   33 61741     1   0 Mon07AM ??         1:23.18 /usr/sbin/distnoted agent
  504 65930     1   0 Thu12AM ??         0:09.42 /System/Library/Frameworks/QuickLookUI.framework/Versions/A/XPCServices/QuickLookUIService.xpc/Contents/MacOS/QuickLookUIService
  504 65937     1   0 Thu12AM ??         0:00.33 /System/Library/Frameworks/Metal.framework/Versions/A/XPCServices/MTLCompilerService.xpc/Contents/MacOS/MTLCompilerService
  504 65938     1   0 Thu12AM ??         0:00.06 /System/Library/Frameworks/Metal.framework/Versions/A/XPCServices/MTLCompilerService.xpc/Contents/MacOS/MTLCompilerService
  504 67448     1   0  9:05AM ??         0:00.81 /usr/libexec/remindd
  504 69137     1   0 10:47AM ??         0:00.03 /System/Library/Frameworks/Metal.framework/Versions/A/XPCServices/MTLCompilerService.xpc/Contents/MacOS/MTLCompilerService
  504 69138     1   0 10:47AM ??         0:00.08 /System/Library/Frameworks/Metal.framework/Versions/A/XPCServices/MTLCompilerService.xpc/Contents/MacOS/MTLCompilerService
  504 69139     1   0 10:47AM ??         0:00.03 /System/Library/Frameworks/Metal.framework/Versions/A/XPCServices/MTLCompilerService.xpc/Contents/MacOS/MTLCompilerService
    0 69195     1   0 10:47AM ??         0:44.85 /usr/libexec/PerfPowerServices
    0 69397     1   0 10:48AM ??         2:02.85 /System/Library/PrivateFrameworks/EcosystemAnalytics.framework/Support/ecosystemanalyticsd
    0 75275     1   0 Sun07AM ??         0:00.05 /usr/libexec/microstackshot
  504 75671     1   0 21Dec24 ??         0:00.02 /System/Library/Frameworks/Metal.framework/Versions/A/XPCServices/MTLCompilerService.xpc/Contents/MacOS/MTLCompilerService
  504 75672     1   0 21Dec24 ??         0:00.02 /System/Library/Frameworks/Metal.framework/Versions/A/XPCServices/MTLCompilerService.xpc/Contents/MacOS/MTLCompilerService
  504 77947     1   0 Thu09AM ??         0:52.15 /System/Applications/News.app/Contents/PlugIns/NewsToday2.appex/Contents/MacOS/NewsToday2
  504 78282     1   0 Sun09AM ??         0:00.19 /usr/libexec/inputanalyticsd
  504 78399     1   0 Sat05PM ??         0:01.23 /System/Library/PrivateFrameworks/IMTranscoding.framework/XPCServices/IMTranscoderAgent.xpc/Contents/MacOS/IMTranscoderAgent
  504 78401     1   0 Sat05PM ??         0:00.41 /System/Library/PrivateFrameworks/MessagesBlastDoorSupport.framework/Versions/A/XPCServices/MessagesBlastDoorService.xpc/Contents/MacOS/MessagesBlastDoorService
  504 78626     1   0 Sat05PM ??         0:05.60 /System/Library/CoreServices/PowerChime.app/Contents/MacOS/PowerChime
  504 78655     1   0 Sat05PM ??         0:04.28 /System/Library/CoreServices/UserNotificationCenter.app/Contents/MacOS/UserNotificationCenter
  262 79853     1   0 Sun10AM ??         0:00.27 /System/Library/Frameworks/CoreMediaIO.framework/Resources/VDC.plugin/Contents/Resources/VDCAssistant
    0 79854     1   0 Sun10AM ??         0:00.05 /System/Library/Audio/Plug-Ins/usbaudio.bundle/Contents/MacOS/usbaudiod
    0 79954     1   0 Sun10AM ??         0:00.09 /usr/libexec/tracd
  278 79959     1   0 Sun10AM ??         0:00.09 /System/Library/PrivateFrameworks/MobileAccessoryUpdater.framework/XPCServices/StandaloneHIDAudService.xpc/Contents/MacOS/StandaloneHIDAudService
  504 80216     1   0 Thu10AM ??         1:15.85 /Applications/Julia-1.9.app/Contents/Resources/julia/bin/julia -i --color=yes --project=@. /Users/huazhou/.julia/packages/IJulia/Vo51o/src/kernel.jl /Users/huazhou/Library/Jupyter/runtime/kernel-67580526-3e8e-4ce2-ac17-df742db94043.json
  504 80306     1   0 Sat06PM ??         0:00.31 /System/Library/Frameworks/GroupActivities.framework/Versions/A/XPCServices/GroupSessionService.xpc/Contents/MacOS/GroupSessionService
  504 80318     1   0 Sat06PM ??         0:00.18 /System/Library/Frameworks/Metal.framework/Versions/A/XPCServices/MTLCompilerService.xpc/Contents/MacOS/MTLCompilerService
  504 80319     1   0 Sat06PM ??         0:00.03 /System/Library/Frameworks/Metal.framework/Versions/A/XPCServices/MTLCompilerService.xpc/Contents/MacOS/MTLCompilerService
  504 80353     1   0 Sat06PM ??         0:00.02 /System/Library/Frameworks/Intents.framework/XPCServices/intents_helper.xpc/Contents/MacOS/intents_helper
  504 80383     1   0 Sun10AM ??        54:09.31 /Applications/DisplayLink Manager.app/Contents/MacOS/DisplayLinkUserAgent
  504 80385     1   0 Sun10AM ??         0:00.02 /usr/libexec/loginitemregisterd
  504 80387     1   0 Sun10AM ??         0:00.04 /System/Library/Frameworks/Metal.framework/Versions/A/XPCServices/MTLCompilerService.xpc/Contents/MacOS/MTLCompilerService
    0 80390     1   0 Sun10AM ??         5:14.59 /System/Library/PrivateFrameworks/AmbientDisplay.framework/Versions/A/XPCServices/com.apple.AmbientDisplayAgent.xpc/Contents/MacOS/com.apple.AmbientDisplayAgent
    0 80392     1   0 Sun10AM ??         0:00.01 /System/Library/Frameworks/ColorSync.framework/Versions/A/XPCServices/com.apple.ColorSyncXPCAgent.xpc/Contents/MacOS/com.apple.ColorSyncXPCAgent
  504 80753     1   0 11:29AM ??         0:00.09 /System/Library/ExtensionKit/Extensions/PackageThumbnailExtension.appex/Contents/MacOS/PackageThumbnailExtension
  504 80761     1   0 11:29AM ??         0:00.03 /System/Library/Frameworks/Metal.framework/Versions/A/XPCServices/MTLCompilerService.xpc/Contents/MacOS/MTLCompilerService
  504 80762     1   0 11:29AM ??         0:00.03 /System/Library/Frameworks/Metal.framework/Versions/A/XPCServices/MTLCompilerService.xpc/Contents/MacOS/MTLCompilerService
  504 80966     1   0 Sun10AM ??         0:01.81 /System/Library/Frameworks/ApplicationServices.framework/Frameworks/PrintCore.framework/Versions/A/printtool
  504 80990     1   0 Sun10AM ??         0:00.01 /System/Library/Frameworks/ColorSync.framework/Versions/A/XPCServices/com.apple.ColorSyncXPCAgent.xpc/Contents/MacOS/com.apple.ColorSyncXPCAgent
  504 82671     1   0 Sun10AM ??         0:03.14 /System/Library/PrivateFrameworks/PaperKit.framework/Contents/LinkedNotesUIService.app/Contents/MacOS/LinkedNotesUIService
  504 83264     1   0 Mon09AM ??         0:00.02 /System/Library/Frameworks/Metal.framework/Versions/A/XPCServices/MTLCompilerService.xpc/Contents/MacOS/MTLCompilerService
  504 83265     1   0 Mon09AM ??         0:00.02 /System/Library/Frameworks/Metal.framework/Versions/A/XPCServices/MTLCompilerService.xpc/Contents/MacOS/MTLCompilerService
  504 84225     1   0 Tue05PM ??         0:00.12 /System/Library/ExtensionKit/Extensions/AudiovisualThumbnailExtension.appex/Contents/MacOS/AudiovisualThumbnailExtension
  504 84226     1   0 Tue05PM ??         0:00.04 /System/Library/Frameworks/AudioToolbox.framework/XPCServices/com.apple.audio.SandboxHelper.xpc/Contents/MacOS/com.apple.audio.SandboxHelper
  504 84227     1   0 Tue05PM ??         0:00.09 /System/Library/Frameworks/VideoToolbox.framework/Versions/A/XPCServices/VTDecoderXPCService.xpc/Contents/MacOS/VTDecoderXPCService
  504 84888     1   0 Thu09PM ??         0:02.39 /System/Library/PrivateFrameworks/IntelligencePlatformCore.framework/Versions/A/knowledgeconstructiond
  504 85306     1   0 Sat06PM ??         0:02.30 /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Resources/storeuid.app/Contents/MacOS/storeuid
  504 85314     1   0 Sat06PM ??         0:09.87 /System/Library/PrivateFrameworks/GameCenterFoundation.framework/Versions/A/gamed
    0 85320     1   0 Sat06PM ??         0:00.05 /System/Library/PrivateFrameworks/AppStoreDaemon.framework/Versions/A/XPCServices/com.apple.AppStoreDaemon.StorePrivilegedTaskService.xpc/Contents/MacOS/com.apple.AppStoreDaemon.StorePrivilegedTaskService
  504 85929     1   0 Thu09PM ??         0:05.89 /System/Library/PrivateFrameworks/DataDetectors.framework/Versions/A/XPCServices/DataDetectorsViewService.xpc/Contents/MacOS/DataDetectorsViewService
  504 85930     1   0 Thu09PM ??         0:02.29 /System/iOSSupport/System/Library/PrivateFrameworks/AvatarUI.framework/PlugIns/AvatarPickerMemojiPicker.appex/Contents/MacOS/AvatarPickerMemojiPicker -AppleLanguages ("en", "en-US", "zh-Hans-US", "zh-Hant-US")
  504 86564     1   0 Thu09PM ??         0:00.02 /System/Library/Frameworks/Metal.framework/Versions/A/XPCServices/MTLCompilerService.xpc/Contents/MacOS/MTLCompilerService
  504 87343     1   0 Thu09PM ??         0:00.07 /System/Library/Frameworks/VideoToolbox.framework/Versions/A/XPCServices/VTDecoderXPCService.xpc/Contents/MacOS/VTDecoderXPCService
  265 87435     1   0 Thu10AM ??         0:01.92 /System/Library/PrivateFrameworks/CoreLSKD.framework/Versions/A/lskdd
  504 89513     1   0 Sat08PM ??         0:00.31 /System/Library/CoreServices/EscrowSecurityAlert.app/Contents/MacOS/EscrowSecurityAlert
    0 89629     1   0 Sat09PM ??         0:00.22 /usr/libexec/tzd
  504 92452     1   0 Fri12PM ??         0:02.77 /System/Library/CoreServices/Family.app/Contents/MacOS/Family
  504 92453     1   0 Fri12PM ??         0:00.06 /System/Library/Frameworks/Metal.framework/Versions/A/XPCServices/MTLCompilerService.xpc/Contents/MacOS/MTLCompilerService
  504 92454     1   0 Fri12PM ??         0:00.05 /System/Library/Frameworks/Metal.framework/Versions/A/XPCServices/MTLCompilerService.xpc/Contents/MacOS/MTLCompilerService
  262 92681     1   0 Sat09PM ??         0:00.76 /usr/libexec/trustd --agent
  205 92687     1   0 Sat09PM ??         0:00.85 /usr/libexec/trustd --agent
    0 92825     1   0 Sat09PM ??         0:00.16 /System/Library/PrivateFrameworks/XprotectFramework.framework/Versions/A/XPCServices/XProtectUpdateService.xpc/Contents/MacOS/XProtectUpdateService
  504 92934     1   0 Thu10AM ??        18:04.37 /Users/huazhou/.julia/juliaup/julia-1.11.2+0.aarch64.apple.darwin14/bin/julia -i --color=yes --project=@. /Users/huazhou/.julia/packages/IJulia/dR0lE/src/kernel.jl /Users/huazhou/Library/Jupyter/runtime/kernel-70c47bc5-bc41-4a50-88ba-d8f50171f16f.json
  504 98168     1   0 Mon10AM ??         0:00.04 /System/Library/Frameworks/Metal.framework/Versions/A/XPCServices/MTLCompilerService.xpc/Contents/MacOS/MTLCompilerService
    0 32531  5921   0  5:31PM ttys000    0:00.02 login -pfl huazhou /bin/bash -c exec -la zsh /bin/zsh
  504 32532 32531   0  5:31PM ttys000    0:00.27 -zsh
  • All Python processes:
ps -eaf | grep python
  504  6241  6112   0 21Dec24 ??         0:00.03 /Applications/Box.app/Contents/MacOS/python -B -c from multiprocessing.resource_tracker import main;main(27)
  504 33381 33244   0  5:33PM ??         0:00.00 sh -c 'bash'  -c 'ps -eaf | grep python' 2>&1
  504 33382 33381   0  5:33PM ??         0:00.00 bash -c ps -eaf | grep python
  504 33384 33382   0  5:33PM ??         0:00.00 grep python
  • Process with PID=1:
ps -fp 1
  UID   PID  PPID   C STIME   TTY           TIME CMD
    0     1     0   0 21Dec24 ??        58:54.32 /sbin/launchd
  • All processes owned by a user:
ps -fu $USER
  UID   PID  PPID   C STIME   TTY           TIME CMD
  504   324     1   0 Mon11AM ??       109:56.32 /Applications/zoom.us.app/Contents/MacOS/zoom.us
  504   335   324   0 Mon11AM ??         0:22.04 /Applications/zoom.us.app/Contents/Frameworks/caphost.app/Contents/MacOS/caphost -pid 324 -evtname caphost324 -key rpc
  504   341     1   0 Mon11AM ??         0:05.35 /System/Library/Frameworks/WebKit.framework/Versions/A/XPCServices/com.apple.WebKit.Networking.xpc/Contents/MacOS/com.apple.WebKit.Networking
  504   342     1   0 Mon11AM ??         0:06.11 /System/Library/Frameworks/WebKit.framework/Versions/A/XPCServices/com.apple.WebKit.GPU.xpc/Contents/MacOS/com.apple.WebKit.GPU
  504   343     1   0 Mon11AM ??         0:07.51 /System/Library/Frameworks/WebKit.framework/Versions/A/XPCServices/com.apple.WebKit.WebContent.xpc/Contents/MacOS/com.apple.WebKit.WebContent
  504   345   324   0 Mon11AM ??         8:41.95 /Applications/zoom.us.app/Contents/Frameworks/ZoomPhone.app/Contents/MacOS/ZoomPhone --zoomBundlePath=/Applications/zoom.us.app
  504   357     1   0 Mon11AM ??         0:01.81 /System/Library/Frameworks/WebKit.framework/Versions/A/XPCServices/com.apple.WebKit.WebContent.xpc/Contents/MacOS/com.apple.WebKit.WebContent
  504   441     1   0 Mon11AM ??         0:02.02 /System/Library/Frameworks/AppKit.framework/Versions/C/XPCServices/ThemeWidgetControlViewService.xpc/Contents/MacOS/ThemeWidgetControlViewService
  504   473     1   0 Mon11AM ??         0:00.33 /System/Library/Frameworks/Metal.framework/Versions/A/XPCServices/MTLCompilerService.xpc/Contents/MacOS/MTLCompilerService
  504   474     1   0 Mon11AM ??         0:00.31 /System/Library/Frameworks/Metal.framework/Versions/A/XPCServices/MTLCompilerService.xpc/Contents/MacOS/MTLCompilerService
  504   905     1   0 Mon11AM ??         0:00.04 /System/Library/Frameworks/Metal.framework/Versions/A/XPCServices/MTLCompilerService.xpc/Contents/MacOS/MTLCompilerService
  504   929     1   0 21Dec24 ??        46:07.41 /usr/sbin/distnoted agent
  504   930     1   0 21Dec24 ??         2:41.37 /usr/sbin/cfprefsd agent
  504   933     1   0 21Dec24 ??         1:43.90 /usr/libexec/secd
  504   934     1   0 21Dec24 ??         1:14.62 /usr/libexec/UserEventAgent (Aqua)
  504   938     1   0 21Dec24 ??         1:05.44 /System/Library/Frameworks/Accounts.framework/Versions/A/Support/accountsd
  504   939     1   0 21Dec24 ??         0:24.11 /System/Library/CoreServices/CoreServicesUIAgent.app/Contents/MacOS/CoreServicesUIAgent
  504   940     1   0 21Dec24 ??         0:14.08 /usr/sbin/universalaccessd launchd -s
  504   942     1   0 21Dec24 ??         0:09.25 /usr/libexec/pboard
  504   943     1   0 21Dec24 ??         0:02.27 /System/Library/PrivateFrameworks/BackgroundTaskManagement.framework/Support/BackgroundTaskManagementAgent.app/Contents/MacOS/BackgroundTaskManagementAgent
  504   944     1   0 21Dec24 ??         1:05.80 /usr/libexec/lsd
  504   945     1   0 21Dec24 ??         0:45.38 /System/Library/PrivateFrameworks/AssistantServices.framework/Versions/A/Support/assistantd
  504   946     1   0 21Dec24 ??         3:00.36 /usr/libexec/triald
  504   947     1   0 21Dec24 ??         0:02.06 /System/Library/PrivateFrameworks/NewDeviceOutreach.framework/ndoagent
  504   948     1   0 21Dec24 ??         0:22.53 /usr/libexec/containermanagerd --runmode=agent --user-container-mode=current --bundle-container-mode=proxy --system-container-mode=none
  504   949     1   0 21Dec24 ??         0:00.10 /usr/libexec/icloudmailagent
  504   950     1   0 21Dec24 ??         0:00.02 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/XPCServices/csnameddatad.xpc/Contents/MacOS/csnameddatad
  504   951     1   0 21Dec24 ??         0:04.83 /System/Library/Frameworks/CoreTelephony.framework/Support/CommCenter -L
  504   953     1   0 21Dec24 ??         0:00.03 /System/Library/CoreServices/APFSUserAgent
  504   955     1   0 21Dec24 ??         0:54.02 /usr/libexec/nsurlsessiond
  504   956     1   0 21Dec24 ??         1:06.12 /usr/libexec/rapportd
  504   957     1   0 21Dec24 ??         0:28.41 /usr/sbin/usernoted
  504   958     1   0 21Dec24 ??         8:05.44 /usr/libexec/routined LAUNCHED_BY_LAUNCHD
  504   959     1   0 21Dec24 ??         0:01.83 /System/Library/PrivateFrameworks/CloudServices.framework/Helpers/com.apple.sbd
  504   960     1   0 21Dec24 ??         1:08.94 /System/Library/PrivateFrameworks/CoreDuetContext.framework/Resources/ContextStoreAgent
  504   961     1   0 21Dec24 ??         0:34.39 /usr/libexec/secinitd
  504   962     1   0 21Dec24 ??         4:22.01 /System/Library/CoreServices/WiFiAgent.app/Contents/MacOS/WiFiAgent
  504   963     1   0 21Dec24 ??         0:03.51 /System/Library/CoreServices/CoreLocationAgent.app/Contents/MacOS/CoreLocationAgent
  504   964     1   0 21Dec24 ??         0:19.18 /System/Library/PrivateFrameworks/TelephonyUtilities.framework/callservicesd
  504   965     1   0 21Dec24 ??         0:06.68 /System/Library/PrivateFrameworks/SyncedDefaults.framework/Support/syncdefaultsd
  504   966     1   0 21Dec24 ??         1:59.55 /System/Library/PrivateFrameworks/IDS.framework/identityservicesd.app/Contents/MacOS/identityservicesd
  504   967     1   0 21Dec24 ??         1:21.80 /usr/libexec/networkserviceproxy
  504   970     1   0 21Dec24 ??         0:02.29 /System/Library/PrivateFrameworks/CoreCDP.framework/Versions/A/Resources/cdpd
  504   971     1   0 21Dec24 ??         2:41.73 /System/Library/PrivateFrameworks/CloudKitDaemon.framework/Support/cloudd
  504   972     1   0 21Dec24 ??         0:03.23 /System/Library/Frameworks/Security.framework/Versions/A/XPCServices/TrustedPeersHelper.xpc/Contents/MacOS/TrustedPeersHelper
  504   973     1   0 21Dec24 ??         0:12.32 /System/Library/PrivateFrameworks/DoNotDisturbServer.framework/Support/donotdisturbd
  504   974     1   0 21Dec24 ??         1:19.54 /System/Library/PrivateFrameworks/TCC.framework/Support/tccd
  504   977     1   0 21Dec24 ??         0:32.13 /System/Library/PrivateFrameworks/HomeKitDaemon.framework/Support/homed
  504   980     1   0 21Dec24 ??         0:07.16 /System/Library/PrivateFrameworks/ScreenTimeCore.framework/Versions/A/ScreenTimeAgent
  504   981     1   0 21Dec24 ??         0:00.47 /System/Library/PrivateFrameworks/CoreFollowUp.framework/Versions/A/Support/followupd
  504   982     1   0 21Dec24 ??         0:52.17 /System/Library/PrivateFrameworks/CalendarDaemon.framework/Support/calaccessd
  504   983     1   0 21Dec24 ??         0:02.73 /usr/libexec/findmylocateagent
  504   984     1   0 21Dec24 ??       593:09.77 /System/Library/PrivateFrameworks/MediaAnalysis.framework/Versions/A/mediaanalysisd
  504   985     1   0 21Dec24 ??         0:40.06 /System/Library/PrivateFrameworks/UserNotificationsCore.framework/Support/usernotificationsd
  504   987     1   0 21Dec24 ??         0:35.25 /usr/libexec/knowledge-agent
  504   989     1   0 21Dec24 ??         1:29.78 /usr/libexec/ContinuityCaptureAgent server
  504   990     1   0 21Dec24 ??         0:38.01 /System/Library/PrivateFrameworks/SiriInference.framework/Versions/A/siriinferenced
  504   991     1   0 21Dec24 ??         0:02.73 /System/Library/Frameworks/FinanceKit.framework/financed
  504   992     1   0 21Dec24 ??         1:30.11 /usr/libexec/siriknowledged
  504   993     1   0 21Dec24 ??         0:43.56 /System/Library/PrivateFrameworks/UsageTracking.framework/Versions/A/UsageTrackingAgent
  504   994     1   0 21Dec24 ??         0:21.79 /usr/libexec/linkd
  504   995     1   0 21Dec24 ??        36:39.97 /System/Library/PrivateFrameworks/CoreSpeech.framework/corespeechd
  504   996     1   0 21Dec24 ??         0:05.61 /usr/libexec/neagent
  504   997     1   0 21Dec24 ??         0:00.25 /System/Library/Frameworks/ManagedSettings.framework/Versions/A/ManagedSettingsAgent
  504   998     1   0 21Dec24 ??         0:01.28 /usr/libexec/dmd
  504   999     1   0 21Dec24 ??         0:16.37 /System/Library/PrivateFrameworks/FamilyCircle.framework/Versions/A/Resources/familycircled
  504  1001     1   0 21Dec24 ??         0:03.40 /usr/libexec/appleaccountd
  504  1003     1   0 21Dec24 ??         0:03.77 /System/Library/Frameworks/LocalAuthentication.framework/Support/coreauthd
  504  1007     1   0 21Dec24 ??         3:20.56 /usr/libexec/sharingd
  504  1008     1   0 21Dec24 ??         0:02.63 /System/Library/CoreServices/sharedfilelistd
  504  1010     1   0 21Dec24 ??         0:02.42 /System/Library/PrivateFrameworks/EmailDaemon.framework/Versions/A/maild
  504  1011     1   0 21Dec24 ??         0:02.65 /System/Library/PrivateFrameworks/SiriTTSService.framework/sirittsd
  504  1012     1   0 21Dec24 ??         0:02.02 /System/Library/PrivateFrameworks/ContinuousDialogManagerService.framework/assistant_cdmd
  504  1013     1   0 21Dec24 ??         8:14.75 /System/Library/CoreServices/ControlCenter.app/Contents/MacOS/ControlCenter
  504  1014     1   0 21Dec24 ??         0:09.30 /usr/libexec/gamecontrolleragentd
  504  1015     1   0 21Dec24 ??         0:00.17 /System/Library/PrivateFrameworks/CommunicationsFilter.framework/CMFSyncAgent
  504  1016     1   0 21Dec24 ??         3:04.30 /System/Library/PrivateFrameworks/BiomeStreams.framework/Support/BiomeAgent
  504  1019     1   0 21Dec24 ??         5:48.20 /System/Library/PrivateFrameworks/CacheDelete.framework/deleted
  504  1020     1   0 21Dec24 ??         0:46.37 /System/Library/CoreServices/audioaccessoryd
  504  1023     1   0 21Dec24 ??         0:05.10 /System/Library/PrivateFrameworks/iCloudNotification.framework/iCloudNotificationAgent
  504  1025     1   0 21Dec24 ??         0:12.53 /System/Library/PrivateFrameworks/AuthKit.framework/Versions/A/Support/akd
  504  1026     1   0 21Dec24 ??         0:03.37 /System/Library/PrivateFrameworks/AppSSO.framework/Support/AppSSOAgent.app/Contents/MacOS/AppSSOAgent
  504  1027     1   0 21Dec24 ??         0:08.73 /System/Library/PrivateFrameworks/SiriSuggestionsSupport.framework/Versions/A/XPCServices/SiriSuggestionsBookkeepingService.xpc/Contents/MacOS/SiriSuggestionsBookkeepingService
  504  1028     1   0 21Dec24 ??         0:04.53 /System/Library/Frameworks/CryptoTokenKit.framework/ctkd -tw
  504  1029     1   0 21Dec24 ??         2:19.88 /usr/libexec/pkd
  504  1032     1   0 21Dec24 ??         0:01.43 /System/Library/PrivateFrameworks/IntelligencePlatformCore.framework/Versions/A/intelligenceplatformd
  504  1035     1   0 21Dec24 ??         0:21.92 /System/Library/PrivateFrameworks/GeoServices.framework/Versions/A/XPCServices/com.apple.geod.xpc/Contents/MacOS/com.apple.geod
  504  1047     1   0 21Dec24 ??         0:47.17 /System/Library/PrivateFrameworks/AXAssetLoader.framework/Support/axassetsd
  504  1048     1   0 21Dec24 ??         0:01.71 /System/Library/CoreServices/pbs
  504  1053     1   0 21Dec24 ??         8:42.54 /System/Library/CoreServices/WindowManager.app/Contents/MacOS/WindowManager
  504  1140     1   0 21Dec24 ??         0:01.58 /System/Library/Frameworks/AudioToolbox.framework/AudioComponentRegistrar
  504  1147     1   0 21Dec24 ??         0:31.86 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices.framework/Versions/A/XPCServices/com.apple.hiservices-xpcservice.xpc/Contents/MacOS/com.apple.hiservices-xpcservice
  504  1150     1   0 21Dec24 ??         0:04.16 /System/Library/PrivateFrameworks/VoiceShortcuts.framework/Versions/A/Support/siriactionsd
  504  1151     1   0 21Dec24 ??         0:01.07 /System/Library/PrivateFrameworks/SocialLayer.framework/sociallayerd.app/Contents/MacOS/sociallayerd
  504  1152     1   0 21Dec24 ??         4:43.33 /System/Library/PrivateFrameworks/CoreSuggestions.framework/Versions/A/Support/suggestd
  504  1153     1   0 21Dec24 ??         0:06.56 /System/Library/PrivateFrameworks/CloudDocsDaemon.framework/Versions/A/Support/bird
  504  1154     1   0 21Dec24 ??         0:28.58 /System/Library/CoreServices/iconservicesagent
  504  1156     1   0 21Dec24 ??         0:01.92 /System/Library/CoreServices/talagentd
  504  1157     1   0 21Dec24 ??         0:02.23 /usr/libexec/intelligentroutingd
  504  1160     1   0 21Dec24 ??         0:08.20 /System/Library/PrivateFrameworks/MobileTimer.framework/Executables/mobiletimerd
  504  1161     1   0 21Dec24 ??        12:30.29 /usr/libexec/replayd
  504  1169     1   0 21Dec24 ??         5:42.12 /System/Library/PrivateFrameworks/FileProvider.framework/Support/fileproviderd
  504  1170     1   0 21Dec24 ??         0:00.40 /System/Library/Frameworks/AudioToolbox.framework/XPCServices/CarbonComponentScannerXPC.xpc/Contents/MacOS/CarbonComponentScannerXPC
  504  1172     1   0 21Dec24 ??         1:22.85 /System/Library/PrivateFrameworks/ReplicatorCore.framework/Support/replicatord
  504  1173     1   0 21Dec24 ??         0:30.92 /usr/libexec/transparencyd
  504  1174     1   0 21Dec24 ??         2:02.69 /System/Library/CoreServices/NotificationCenter.app/Contents/MacOS/NotificationCenter
  504  1176     1   0 21Dec24 ??         0:00.08 /System/Library/Frameworks/Metal.framework/Versions/A/XPCServices/MTLCompilerService.xpc/Contents/MacOS/MTLCompilerService
  504  1177     1   0 21Dec24 ??         0:00.09 /System/Library/Frameworks/Metal.framework/Versions/A/XPCServices/MTLCompilerService.xpc/Contents/MacOS/MTLCompilerService
  504  1178     1   0 21Dec24 ??         0:03.47 /usr/libexec/fmfd
  504  1180     1   0 21Dec24 ??         0:00.89 /System/Library/PrivateFrameworks/ProtectedCloudStorage.framework/Helpers/ProtectedCloudKeySyncing
  504  1181     1   0 21Dec24 ??         0:01.58 /System/Library/CoreServices/Keychain Circle Notification.app/Contents/MacOS/Keychain Circle Notification
  504  1185     1   0 21Dec24 ??         0:05.89 /System/Library/PrivateFrameworks/StatusKit.framework/StatusKitAgent
  504  1186     1   0 21Dec24 ??         0:02.54 /System/Library/PrivateFrameworks/AssetCacheServices.framework/Versions/A/XPCServices/AssetCacheLocatorService.xpc/Contents/MacOS/AssetCacheLocatorService -a
  504  1188     1   0 21Dec24 ??         2:07.53 /System/Library/PrivateFrameworks/ChronoCore.framework/Support/chronod
  504  1189     1   0 21Dec24 ??         0:11.83 /System/Library/CoreServices/UIKitSystem.app/Contents/MacOS/UIKitSystem system_app_start
  504  1190     1   0 21Dec24 ??         0:00.34 /System/Library/Frameworks/ClassKit.framework/Versions/A/progressd
  504  1191     1   0 21Dec24 ??         0:01.09 /System/Library/Frameworks/Speech.framework/Versions/A/XPCServices/localspeechrecognition.xpc/Contents/MacOS/localspeechrecognition
  504  1195     1   0 21Dec24 ??         1:09.42 /System/Library/PrivateFrameworks/IMCore.framework/imagent.app/Contents/MacOS/imagent
  504  1196     1   0 21Dec24 ??         0:00.30 /System/Library/PrivateFrameworks/TelephonyUtilities.framework/XPCServices/com.apple.FaceTime.FTConversationService.xpc/Contents/MacOS/com.apple.FaceTime.FTConversationService
  504  1199     1   0 21Dec24 ??         1:05.96 /System/Library/PrivateFrameworks/IMDPersistence.framework/XPCServices/IMDPersistenceAgent.xpc/Contents/MacOS/IMDPersistenceAgent
  504  1201     1   0 21Dec24 ??         0:02.70 /System/Library/PrivateFrameworks/ContextKit.framework/Versions/A/XPCServices/ContextService.xpc/Contents/MacOS/ContextService
  504  1202     1   0 21Dec24 ??        11:29.02 /System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/corespotlightd
  504  1225     1   0 21Dec24 ??         0:00.02 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryServices.framework/Versions/A/XPCServices/com.apple.DictionaryServiceHelper.xpc/Contents/MacOS/com.apple.DictionaryServiceHelper
  504  1226     1   0 21Dec24 ??         0:00.33 /System/Library/PrivateFrameworks/MediaRemote.framework/Support/mediaremoteagent
  504  1227     1   0 21Dec24 ??         0:03.35 /usr/libexec/keyboardservicesd
  504  1233     1   0 21Dec24 ??        35:04.67 /usr/libexec/avconferenced
  504  1234     1   0 21Dec24 ??         1:16.44 /usr/libexec/milod
  504  1239     1   0 21Dec24 ??         0:25.94 /System/Library/PrivateFrameworks/UserActivity.framework/Agents/useractivityd
  504  1241     1   0 21Dec24 ??         0:13.71 /usr/libexec/bluetoothuserd
  504  1257     1   0 21Dec24 ??         0:13.71 /System/Library/PrivateFrameworks/CloudTelemetry.framework/Versions/A/XPCServices/CloudTelemetryService.xpc/Contents/MacOS/CloudTelemetryService
  504  1271     1   0 21Dec24 ??         0:00.01 /System/Library/PrivateFrameworks/WiFiPolicy.framework/XPCServices/WiFiCloudAssetsXPCService.xpc/Contents/MacOS/WiFiCloudAssetsXPCService
  504  1276     1   0 21Dec24 ??         0:01.38 /System/Library/PrivateFrameworks/CallHistory.framework/Support/CallHistorySyncHelper
  504  1285     1   0 21Dec24 ??         0:00.07 /usr/libexec/seserviced
  504  1329     1   0 21Dec24 ??         1:16.92 /System/Library/PrivateFrameworks/PhotoLibraryServices.framework/Versions/A/Support/photolibraryd
  504  1373     1   0 21Dec24 ??         0:00.07 /System/Library/CoreServices/ReportCrash agent
  504  1504     1   0 21Dec24 ??         0:01.16 /System/Library/CoreServices/ScopedBookmarkAgent
  504  1536     1   0 21Dec24 ??         0:02.05 /System/Library/Frameworks/Metal.framework/Versions/A/XPCServices/MTLCompilerService.xpc/Contents/MacOS/MTLCompilerService
  504  1800     1   0 12:07PM ??         0:00.32 /System/iOSSupport/System/Library/PrivateFrameworks/HomeEnergyDaemon.framework/Support/homeenergyd
  504  2100     1   0 21Dec24 ??        27:26.69 /System/Library/Frameworks/CoreSpotlight.framework/spotlightknowledged -u
  504  2399     1   0 21Dec24 ??         0:23.97 /System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/mdbulkimport -s mdworker-bundle -c MDSImporterBundleFinder -m com.apple.metadata.mdbulkimport
  504  2402     1   0 Fri02PM ??         0:05.34 /System/Library/PrivateFrameworks/HearingCore.framework/heard
  504  2474     1   0 21Dec24 ??         0:37.24 /System/Library/PrivateFrameworks/ViewBridge.framework/Versions/A/XPCServices/ViewBridgeAuxiliary.xpc/Contents/MacOS/ViewBridgeAuxiliary
  504  2484     1   0 21Dec24 ??         0:00.03 /System/Library/Frameworks/AudioToolbox.framework/XPCServices/com.apple.audio.ComponentTagHelper.xpc/Contents/MacOS/com.apple.audio.ComponentTagHelper
  504  2489     1   0 21Dec24 ??         0:00.38 /System/Library/PrivateFrameworks/CloudPhotoServices.framework/Versions/A/XPCServices/com.apple.CloudPhotosConfiguration.xpc/Contents/MacOS/com.apple.CloudPhotosConfiguration
  504  2490     1   0 21Dec24 ??         0:09.31 /System/Library/PrivateFrameworks/GenerativeExperiencesRuntime.framework/Versions/A/generativeexperiencesd
  504  2491     1   0 21Dec24 ??         0:05.08 /System/Library/CoreServices/WallpaperAgent.app/Contents/MacOS/WallpaperAgent
  504  2492     1   0 21Dec24 ??         0:03.05 /usr/libexec/MTLAssetUpgraderD
  504  2493     1   0 21Dec24 ??         0:39.39 /usr/libexec/swcd
  504  2494     1   0 21Dec24 ??         4:34.39 /usr/libexec/duetexpertd
  504  2495     1   0 21Dec24 ??         0:00.40 /System/Library/Frameworks/MediaExtension.framework/Versions/A/Helpers/MENotificationAgent
  504  2500     1   0 21Dec24 ??         0:00.39 /System/Library/Frameworks/Metal.framework/Versions/A/XPCServices/MTLCompilerService.xpc/Contents/MacOS/MTLCompilerService
  504  2505     1   0 21Dec24 ??         0:54.14 /System/Library/PrivateFrameworks/AppleMediaServices.framework/Resources/amsaccountsd
  504  2506     1   0 21Dec24 ??         0:38.18 /System/Library/PrivateFrameworks/AppleMediaServicesUI.framework/amsengagementd
  504  2508     1   0 21Dec24 ??         0:00.95 /System/Library/PrivateFrameworks/IntlPreferences.framework/Support/localizationswitcherd
  504  2509     1   0 21Dec24 ??         0:06.01 /System/Library/Frameworks/ExtensionFoundation.framework/Versions/A/XPCServices/extensionkitservice.xpc/Contents/MacOS/extensionkitservice
  504  2515     1   0 21Dec24 ??         0:00.17 /System/Library/Frameworks/Metal.framework/Versions/A/XPCServices/MTLCompilerService.xpc/Contents/MacOS/MTLCompilerService
  504  2517     1   0 21Dec24 ??         1:45.19 /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framework/Support/fontd
  504  2528     1   0 21Dec24 ??         0:00.17 /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Resources/storedownloadd
  504  2529     1   0 21Dec24 ??         0:03.23 /System/Library/PrivateFrameworks/PassKitCore.framework/passd
  504  2530     1   0 21Dec24 ??         0:14.94 /System/Library/Frameworks/QuickLookThumbnailing.framework/Support/com.apple.quicklook.ThumbnailsAgent
  504  2531     1   0 21Dec24 ??         0:00.18 /System/Library/PrivateFrameworks/GeoServices.framework/geodMachServiceBridge
  504  2532     1   0 21Dec24 ??         0:24.68 /System/Library/PrivateFrameworks/AppStoreDaemon.framework/Support/appstoreagent
  504  2533     1   0 21Dec24 ??         0:05.38 /System/Library/CoreServices/diagnostics_agent
  504  2534     1   0 21Dec24 ??         0:00.05 /System/Library/PrivateFrameworks/LockdownMode.framework/Versions/A/XPCServices/lockdownmoded
  504  2536     1   0 21Dec24 ??         0:00.01 /System/Library/Frameworks/ExtensionFoundation.framework/Versions/A/XPCServices/extensionkitservice.xpc/Contents/MacOS/extensionkitservice
  504  2538     1   0 21Dec24 ??        27:36.55 /System/Library/ExtensionKit/Extensions/WallpaperVideoExtension.appex/Contents/MacOS/WallpaperVideoExtension
  504  2542     1   0 21Dec24 ??        11:40.67 /System/Library/Frameworks/VideoToolbox.framework/Versions/A/XPCServices/VTDecoderXPCService.xpc/Contents/MacOS/VTDecoderXPCService
  504  2543     1   0 21Dec24 ??         0:00.02 /System/Library/ExtensionKit/Extensions/SoundIntentsExtension.appex/Contents/MacOS/SoundIntentsExtension
  504  2552     1   0 21Dec24 ??         0:07.26 /System/Library/PrivateFrameworks/CascadeSets.framework/Versions/A/XPCServices/SetStoreUpdateService.xpc/Contents/MacOS/SetStoreUpdateService
  504  2556     1   0 21Dec24 ??         0:00.09 /System/Library/Frameworks/Metal.framework/Versions/A/XPCServices/MTLCompilerService.xpc/Contents/MacOS/MTLCompilerService
  504  2561     1   0 21Dec24 ??         0:03.21 /System/Library/PrivateFrameworks/NewsDaemon.framework/newsd
  504  2571     1   0 21Dec24 ??         0:03.00 /System/Library/PrivateFrameworks/SoftwareUpdate.framework/Resources/SoftwareUpdateNotificationManager.app/Contents/MacOS/SoftwareUpdateNotificationManager
  504  2578     1   0 21Dec24 ??         3:22.13 /System/Library/PrivateFrameworks/DataAccess.framework/Support/dataaccessd
  504  2579     1   0 21Dec24 ??         0:00.13 /System/Library/PrivateFrameworks/AccountsDaemon.framework/XPCServices/com.apple.accounts.dom.xpc/Contents/MacOS/com.apple.accounts.dom
  504  2581     1   0 21Dec24 ??         0:02.49 /usr/libexec/promotedcontentd
  504  2584     1   0 21Dec24 ??         0:02.34 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Support/fontworker
  504  2588     1   0 21Dec24 ??         0:00.26 /System/Volumes/Preboot/Cryptexes/App/System/Applications/Safari.app/Contents/Extensions/SafariWidgetExtension.appex/Contents/MacOS/SafariWidgetExtension
  504  2592     1   0 21Dec24 ??         0:38.16 /System/Library/PrivateFrameworks/PhotoAnalysis.framework/Versions/A/Support/photoanalysisd
  504  2596     1   0 21Dec24 ??         0:13.62 /System/Library/PrivateFrameworks/People.framework/peopled
  504  2597     1   0 21Dec24 ??         0:08.26 /usr/libexec/proactived
  504  2600     1   0 21Dec24 ??         0:04.38 /usr/libexec/swtransparencyd
  504  2629     1   0 21Dec24 ??         0:00.19 /System/Library/PrivateFrameworks/Categories.framework/Versions/A/XPCServices/CategoriesService.xpc/Contents/MacOS/CategoriesService
  504  2630     1   0 21Dec24 ??         0:03.29 /System/Library/PrivateFrameworks/CloudTelemetry.framework/Versions/A/XPCServices/CloudTelemetryService.xpc/Contents/MacOS/CloudTelemetryService
  504  2646     1   0 21Dec24 ??         0:02.28 cloudphotod
  504  2735     1   0 21Dec24 ??         0:00.15 /System/Library/PrivateFrameworks/MacinTalk.framework/Versions/A/PlugIns/WardaSynthesizer_x86_64.appex/Contents/MacOS/WardaSynthesizer_x86_64 -AppleLanguages ("en-US", "zh-Hans-US", "zh-Hant-US")
  504  2737     1   0 21Dec24 ??         0:00.05 /System/Library/PrivateFrameworks/TextToSpeechMauiSupport.framework/Versions/A/PlugIns/MauiAUSP.appex/Contents/MacOS/MauiAUSP -AppleLanguages ("en-US", "zh-Hans-US", "zh-Hant-US")
  504  2738     1   0 21Dec24 ??         0:00.05 /System/Library/PrivateFrameworks/MacinTalk.framework/Versions/A/PlugIns/MacinTalkAUSP.appex/Contents/MacOS/MacinTalkAUSP -AppleLanguages ("en-US", "zh-Hans-US", "zh-Hant-US")
  504  2739     1   0 21Dec24 ??         0:00.02 /System/Library/PrivateFrameworks/TextToSpeech.framework/PlugIns/SiriAUSP.appex/Contents/MacOS/SiriAUSP -AppleLanguages ("en-US", "zh-Hans-US", "zh-Hant-US")
  504  2741     1   0 21Dec24 ??         0:00.02 /System/Library/PrivateFrameworks/TextToSpeechKonaSupport.framework/Versions/A/PlugIns/KonaSynthesizer.appex/Contents/MacOS/KonaSynthesizer -AppleLanguages ("en-US", "zh-Hans-US", "zh-Hant-US")
  504  2742     1   0 21Dec24 ??         0:00.04 /System/Library/PrivateFrameworks/MacinTalk.framework/Versions/A/PlugIns/WardaSynthesizer_arm64.appex/Contents/MacOS/WardaSynthesizer_arm64 -AppleLanguages ("en-US", "zh-Hans-US", "zh-Hant-US")
  504  2746     1   0 21Dec24 ??         0:00.02 /System/Library/Frameworks/AudioToolbox.framework/XPCServices/com.apple.audio.SandboxHelper.xpc/Contents/MacOS/com.apple.audio.SandboxHelper
  504  2747     1   0 21Dec24 ??         0:00.02 /System/Library/Frameworks/AudioToolbox.framework/XPCServices/com.apple.audio.SandboxHelper.xpc/Contents/MacOS/com.apple.audio.SandboxHelper
  504  2752     1   0 21Dec24 ??         0:00.36 /System/Library/PrivateFrameworks/SiriTTSService.framework/Versions/A/XPCServices/com.apple.SiriTTSService.TrialProxy.xpc/Contents/MacOS/com.apple.SiriTTSService.TrialProxy
  504  2756     1   0 21Dec24 ??         0:00.02 /System/Library/Frameworks/AudioToolbox.framework/XPCServices/com.apple.audio.SandboxHelper.xpc/Contents/MacOS/com.apple.audio.SandboxHelper
  504  2757     1   0 21Dec24 ??         0:00.02 /System/Library/Frameworks/AudioToolbox.framework/XPCServices/com.apple.audio.SandboxHelper.xpc/Contents/MacOS/com.apple.audio.SandboxHelper
  504  2758     1   0 21Dec24 ??         0:00.02 /System/Library/Frameworks/AudioToolbox.framework/XPCServices/com.apple.audio.SandboxHelper.xpc/Contents/MacOS/com.apple.audio.SandboxHelper
  504  2759     1   0 21Dec24 ??         0:00.02 /System/Library/Frameworks/AudioToolbox.framework/XPCServices/com.apple.audio.SandboxHelper.xpc/Contents/MacOS/com.apple.audio.SandboxHelper
  504  2760     1   0 21Dec24 ??         0:00.36 /System/Library/PrivateFrameworks/SiriTTSService.framework/Versions/A/XPCServices/com.apple.SiriTTSService.TrialProxy.xpc/Contents/MacOS/com.apple.SiriTTSService.TrialProxy
  504  2767     1   0 21Dec24 ??         0:01.25 /System/Library/PrivateFrameworks/TextToSpeechVoiceBankingSupport.framework/Support/voicebankingd
  504  2773     1   0 Fri02PM ??         1:48.60 /Applications/Cisco/Cisco Secure Client.app/Contents/MacOS/Cisco Secure Client
  504  2787     1   0 Fri02PM ??         0:14.97 /System/Library/PrivateFrameworks/SafariPlatformSupport.framework/Versions/A/XPCServices/com.apple.SafariPlatformSupport.Helper.xpc/Contents/MacOS/com.apple.SafariPlatformSupport.Helper
  504  2788     1   0 Fri02PM ??         0:01.61 /System/Library/Frameworks/WebKit.framework/Versions/A/XPCServices/com.apple.WebKit.GPU.xpc/Contents/MacOS/com.apple.WebKit.GPU
  504  2792     1   0 Fri02PM ??         0:00.02 /System/Library/Frameworks/AudioToolbox.framework/XPCServices/com.apple.audio.SandboxHelper.xpc/Contents/MacOS/com.apple.audio.SandboxHelper
  504  2806     1   0 Fri02PM ??         0:00.04 /System/Library/Frameworks/Metal.framework/Versions/A/XPCServices/MTLCompilerService.xpc/Contents/MacOS/MTLCompilerService
  504  2809     1   0 21Dec24 ??         0:07.08 /System/Library/PrivateFrameworks/SiriAnalytics.framework/Versions/A/XPCServices/SAExtensionOrchestrator.xpc/Contents/MacOS/SAExtensionOrchestrator
  504  2815     1   0 21Dec24 ??         1:45.15 /System/Library/PrivateFrameworks/IntelligencePlatformCompute.framework/Versions/A/XPCServices/IntelligencePlatformComputeService.xpc/Contents/MacOS/IntelligencePlatformComputeService
  504  2816     1   0 21Dec24 ??         0:00.08 /System/Library/Frameworks/ExtensionFoundation.framework/Versions/A/XPCServices/extensionkitservice.xpc/Contents/MacOS/extensionkitservice
  504  2817     1   0 21Dec24 ??         0:00.30 /System/Library/ExtensionKit/Extensions/IFTelemetrySELFIngestor.appex/Contents/MacOS/IFTelemetrySELFIngestor
  504  2818     1   0 21Dec24 ??         0:00.43 /System/Library/ExtensionKit/Extensions/IFTranscriptSELFIngestor.appex/Contents/MacOS/IFTranscriptSELFIngestor
  504  2820     1   0 21Dec24 ??         0:02.26 /System/Library/ExtensionKit/Extensions/GMSSELFIngestor.appex/Contents/MacOS/GMSSELFIngestor
  504  2821     1   0 21Dec24 ??         0:00.42 /System/Library/ExtensionKit/Extensions/BiomeSELFIngestor.appex/Contents/MacOS/BiomeSELFIngestor
  504  2837     1   0 21Dec24 ??         2:32.72 /usr/libexec/searchpartyuseragent
  504  2849     1   0 21Dec24 ??         0:00.01 /System/Library/Frameworks/Intents.framework/XPCServices/intents_helper.xpc/Contents/MacOS/intents_helper
  504  2851     1   0 21Dec24 ??         0:00.08 /System/Library/PrivateFrameworks/MobileTimer.framework/PlugIns/MobileTimerIntents.appex/Contents/MacOS/MobileTimerIntents -AppleLanguages ("en-US", "zh-Hans-US", "zh-Hant-US")
  504  2853     1   0 21Dec24 ??         0:00.02 /System/Library/PrivateFrameworks/CalendarWidget.framework/PlugIns/IntentsExtension.appex/Contents/MacOS/IntentsExtension -AppleLanguages ("en-US", "zh-Hans-US", "zh-Hant-US")
  504  2873     1   0 21Dec24 ??         0:00.04 /System/Library/Frameworks/ExtensionFoundation.framework/Versions/A/XPCServices/extensionkitservice.xpc/Contents/MacOS/extensionkitservice
  504  2874     1   0 21Dec24 ??         0:00.04 /System/Applications/Calendar.app/Contents/Extensions/CalendarIntentsExtension.appex/Contents/MacOS/CalendarIntentsExtension
  504  2877     1   0 21Dec24 ??         0:00.06 /System/Volumes/Preboot/Cryptexes/App/System/Applications/Safari.app/Contents/Extensions/SafariLinkExtension.appex/Contents/MacOS/SafariLinkExtension
  504  2878     1   0 21Dec24 ??         0:00.41 /usr/libexec/diagnosticextensionsd
  504  2882     1   0 21Dec24 ??         0:00.05 /System/Applications/Messages.app/Contents/Extensions/MessagesActionExtension.appex/Contents/MacOS/MessagesActionExtension
  504  2902     1   0 21Dec24 ??         0:25.01 /System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/mdworker -s mdworker-sizing -c MDSSizingWorker -m com.apple.mdworker.sizing
  504  2911     1   0 21Dec24 ??         0:00.06 /System/Library/PrivateFrameworks/AMPLibrary.framework/Versions/A/Support/AMPArtworkAgent --launchd
  504  2912     1   0 21Dec24 ??         0:00.02 /System/Library/Frameworks/NetFS.framework/Versions/A/XPCServices/PlugInLibraryService.xpc/Contents/MacOS/PlugInLibraryService
  504  3026     1   0 21Dec24 ??         0:00.85 /System/Library/PrivateFrameworks/AvatarPersistence.framework/Support/avatarsd
  504  3033     1   0 21Dec24 ??         0:20.15 /System/Library/PrivateFrameworks/AppPredictionFoundation.framework/Versions/A/XPCServices/AppPredictionIntentsHelperService.xpc/Contents/MacOS/AppPredictionIntentsHelperService
  504  3064     1   0 21Dec24 ??         0:14.62 /System/Library/PrivateFrameworks/CoreParsec.framework/parsecd
  504  3065     1   0 21Dec24 ??         0:05.62 /System/Library/PrivateFrameworks/iTunesCloud.framework/Support/itunescloudd
  504  3072     1   0 21Dec24 ??         0:13.03 /usr/libexec/tipsd
  504  3079     1   0 21Dec24 ??         0:07.96 /System/Library/PrivateFrameworks/AppStoreComponents.framework/Support/appstorecomponentsd
  504  3082     1   0 21Dec24 ??         0:01.17 /System/Cryptexes/App/System/Library/CoreServices/SafariSupport.bundle/Contents/MacOS/SafariBookmarksSyncAgent
  504  3423     1   0 21Dec24 ??         0:00.84 /System/Library/Frameworks/CoreGraphics.framework/Versions/A/XPCServices/CGPDFService.xpc/Contents/MacOS/CGPDFService
  504  3424     1   0 21Dec24 ??         0:00.44 /System/Library/Frameworks/ExtensionFoundation.framework/Versions/A/XPCServices/extensionkitservice.xpc/Contents/MacOS/extensionkitservice
  504  3425     1   0 21Dec24 ??         0:03.14 /System/Library/ExtensionKit/Extensions/ImageThumbnailExtension.appex/Contents/MacOS/ImageThumbnailExtension
  504  3426     1   0 21Dec24 ??         0:00.39 /System/Library/ExtensionKit/Extensions/OfficeThumbnailExtension.appex/Contents/MacOS/OfficeThumbnailExtension
  504  3427     1   0 21Dec24 ??         0:00.68 /System/Library/ExtensionKit/Extensions/WebThumbnailExtension.appex/Contents/MacOS/WebThumbnailExtension
  504  3428     1   0 21Dec24 ??         0:00.58 /System/Library/Frameworks/WebKit.framework/Versions/A/XPCServices/com.apple.WebKit.GPU.xpc/Contents/MacOS/com.apple.WebKit.GPU
  504  3431     1   0 21Dec24 ??         0:00.05 /System/Library/Frameworks/AudioToolbox.framework/XPCServices/com.apple.audio.SandboxHelper.xpc/Contents/MacOS/com.apple.audio.SandboxHelper
  504  3432     1   0 21Dec24 ??         0:00.15 /System/Library/Frameworks/QuickLook.framework/Versions/A/XPCServices/QuickLookSatellite.xpc/Contents/MacOS/QuickLookSatellite
  504  3434     1   0 21Dec24 ??         0:00.05 /System/Library/Frameworks/Metal.framework/Versions/A/XPCServices/MTLCompilerService.xpc/Contents/MacOS/MTLCompilerService
  504  3435     1   0 21Dec24 ??         0:00.05 /System/Library/Frameworks/Metal.framework/Versions/A/XPCServices/MTLCompilerService.xpc/Contents/MacOS/MTLCompilerService
  504  3444     1   0 21Dec24 ??         0:00.03 /usr/libexec/spindump_agent
  504  3456     1   0 21Dec24 ??         0:04.30 /System/Library/PrivateFrameworks/MapsSync.framework/mapssyncd
  504  3480     1   0 21Dec24 ??         0:05.53 /usr/libexec/mlhostd
  504  3481     1   0 21Dec24 ??         0:08.34 /System/Library/Frameworks/ExtensionFoundation.framework/Versions/A/XPCServices/extensionkitservice.xpc/Contents/MacOS/extensionkitservice
  504  3503     1   0 21Dec24 ??         0:00.53 /usr/libexec/backgroundassets.user
  504  3555     1   0 21Dec24 ??         0:01.70 /usr/libexec/betaenrollmentd
  504  3556     1   0 21Dec24 ??         0:26.56 /System/Cryptexes/App/usr/libexec/PasswordBreachAgent
  504  3576     1   0 21Dec24 ??         0:00.16 /usr/libexec/metrickitd
  504  3577     1   0 21Dec24 ??         0:00.26 /usr/libexec/ciphermld
  504  3642     1   0 21Dec24 ??         0:00.14 /System/Library/PrivateFrameworks/RemoteManagement.framework/RemoteManagementAgent
  504  3644     1   0 21Dec24 ??         0:00.11 /System/Library/PrivateFrameworks/SafariFoundation.framework/Versions/A/XPCServices/SafariConfigurationSubscriber.xpc/Contents/MacOS/SafariConfigurationSubscriber
  504  3645     1   0 21Dec24 ??         0:00.11 /System/Library/PrivateFrameworks/RemoteManagement.framework/XPCServices/SecuritySubscriber.xpc/Contents/MacOS/SecuritySubscriber
  504  3646     1   0 21Dec24 ??         0:00.12 /System/Library/PrivateFrameworks/RemoteManagement.framework/XPCServices/InteractiveLegacyProfilesSubscriber.xpc/Contents/MacOS/InteractiveLegacyProfilesSubscriber
  504  3648     1   0 21Dec24 ??         0:00.08 /System/Library/PrivateFrameworks/RemoteManagement.framework/XPCServices/ScreenSharingSubscriber.xpc/Contents/MacOS/ScreenSharingSubscriber
  504  3651     1   0 21Dec24 ??         0:00.15 /System/Library/PrivateFrameworks/RemoteManagement.framework/XPCServices/MathSettingsSubscriber.xpc/Contents/MacOS/MathSettingsSubscriber
  504  3652     1   0 21Dec24 ??         0:00.09 /System/Library/PrivateFrameworks/RemoteManagement.framework/XPCServices/LegacyProfilesSubscriber.xpc/Contents/MacOS/LegacyProfilesSubscriber
  504  3653     1   0 21Dec24 ??         0:00.14 /System/Library/PrivateFrameworks/RemoteManagement.framework/XPCServices/PasscodeSettingsSubscriber.xpc/Contents/MacOS/PasscodeSettingsSubscriber
  504  3654     1   0 21Dec24 ??         0:00.17 /System/Library/PrivateFrameworks/RemoteManagement.framework/XPCServices/AccountSubscriber.xpc/Contents/MacOS/AccountSubscriber
  504  3655     1   0 21Dec24 ??         0:00.10 /System/Library/PrivateFrameworks/RemoteManagement.framework/XPCServices/ManagementTestSubscriber.xpc/Contents/MacOS/ManagementTestSubscriber
  504  3656     1   0 21Dec24 ??         0:00.09 /System/Library/PrivateFrameworks/RemoteManagement.framework/XPCServices/ASConfigurationSubscriber.xpc/Contents/MacOS/ASConfigurationSubscriber
  504  3675     1   0 21Dec24 ??         0:02.50 /usr/libexec/proactiveeventtrackerd
  504  3759     1   0 21Dec24 ??         0:00.74 /System/Library/PrivateFrameworks/CoreRecents.framework/Versions/A/Support/recentsd
  504  3774     1   0 21Dec24 ??         0:03.26 /System/Library/Frameworks/Speech.framework/Versions/A/XPCServices/localspeechrecognition.xpc/Contents/MacOS/localspeechrecognition
  504  3804     1   0 21Dec24 ??         0:00.54 /System/Library/PrivateFrameworks/AssistantServices.framework/Versions/A/XPCServices/media-indexer.xpc/Contents/MacOS/media-indexer
  504  3807     1   0 21Dec24 ??         0:05.16 /System/Library/PrivateFrameworks/AMPLibrary.framework/Versions/A/Support/AMPLibraryAgent --launchd
  504  3808     1   0 21Dec24 ??         0:00.06 /System/Library/PrivateFrameworks/PodcastServices.framework/XPCServices/PodcastContentService.xpc/Contents/MacOS/PodcastContentService
  504  3809     1   0 21Dec24 ??         0:00.08 /System/Library/PrivateFrameworks/BookKit.framework/Versions/A/XPCServices/com.apple.BKAgentService.xpc/Contents/MacOS/com.apple.BKAgentService
  504  3851     1   0 21Dec24 ??         0:19.07 /System/Library/PrivateFrameworks/ContactsDonation.framework/Versions/A/Support/contactsdonationagent
  504  3869     1   0 21Dec24 ??         0:00.07 /usr/libexec/mlruntimed
  504  3873     1   0 21Dec24 ??         0:54.44 /System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/mdwrite
  504  3877     1   0 21Dec24 ??         0:00.21 /System/Library/Frameworks/CoreSpotlight.framework/spotlightknowledged -x
  504  4066     1   0 21Dec24 ??         0:01.30 /System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/managedcorespotlightd
  504  4534     1   0 21Dec24 ??         4:36.25 /usr/libexec/trustd --agent
  504  4811     1   0 Sun12PM ??         0:11.33 /System/Applications/Preview.app/Contents/MacOS/Preview
  504  4812     1   0 Sun12PM ??         0:00.12 /System/Library/Frameworks/Metal.framework/Versions/A/XPCServices/MTLCompilerService.xpc/Contents/MacOS/MTLCompilerService
  504  4813     1   0 Sun12PM ??         0:00.06 /System/Library/Frameworks/Metal.framework/Versions/A/XPCServices/MTLCompilerService.xpc/Contents/MacOS/MTLCompilerService
  504  4814     1   0 Sun12PM ??         0:00.04 /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/XPCServices/mscamerad-xpc.xpc/Contents/MacOS/mscamerad-xpc
  504  4815     1   0 Sun12PM ??         0:07.97 /usr/libexec/ptpcamerad
  504  4816     1   0 Sun12PM ??         0:06.17 /System/Library/Frameworks/AppKit.framework/Versions/C/XPCServices/com.apple.appkit.xpc.openAndSavePanelService.xpc/Contents/MacOS/com.apple.appkit.xpc.openAndSavePanelService
  504  4817     1   0 Sun12PM ??         0:02.45 /System/Library/Frameworks/QuickLookUI.framework/Versions/A/XPCServices/QuickLookUIService.xpc/Contents/MacOS/QuickLookUIService
  504  4819     1   0 Sun12PM ??         0:02.08 /Applications/Utilities/Adobe Sync/CoreSync/Core Sync.app/Contents/PlugIns/ACCFinderSync.appex/Contents/MacOS/ACCFinderSync -AppleLanguages ("en", "en-US", "zh-Hans-US", "zh-Hant-US")
  504  4854     1   0 Sun12PM ??         2:24.81 /System/Library/Input Methods/SCIM.app/Contents/PlugIns/SCIM_Extension.appex/Contents/MacOS/SCIM_Extension -AppleLanguages ("en-US", "zh-Hans-US", "zh-Hant-US")
  504  4868     1   0 21Dec24 ??         0:01.49 /System/Applications/Calendar.app/Contents/PlugIns/CalendarWidgetExtension.appex/Contents/MacOS/CalendarWidgetExtension
  504  4890     1   0 21Dec24 ??         0:12.24 /System/Applications/Clock.app/Contents/PlugIns/WorldClockWidget.appex/Contents/MacOS/WorldClockWidget
  504  4903     1   0 21Dec24 ??         0:00.03 /System/Applications/FindMy.app/Contents/PlugIns/FindMyWidgetItems.appex/Contents/MacOS/FindMyWidgetItems
  504  4904     1   0 21Dec24 ??         0:00.03 /System/Applications/FindMy.app/Contents/PlugIns/FindMyWidgetIntentsItems.appex/Contents/MacOS/FindMyWidgetIntentsItems -AppleLanguages ("en-US", "zh-Hans-US", "zh-Hant-US")
  504  4914     1   0 21Dec24 ??         0:00.04 /System/Applications/FindMy.app/Contents/PlugIns/FindMyWidgetPeople.appex/Contents/MacOS/FindMyWidgetPeople
  504  4917     1   0 21Dec24 ??         0:00.08 /System/Applications/Home.app/Contents/PlugIns/HomeWidget.appex/Contents/MacOS/HomeWidget
  504  4928     1   0 21Dec24 ??         0:00.22 /System/Applications/Home.app/Contents/PlugIns/HomeEnergyWidgetsExtension.appex/Contents/MacOS/HomeEnergyWidgetsExtension
  504  5014     1   0 21Dec24 ??         0:00.08 /System/Applications/News.app/Contents/PlugIns/NewsTag.appex/Contents/MacOS/NewsTag
  504  5015     1   0 21Dec24 ??         0:00.06 /System/Applications/News.app/Contents/PlugIns/NewsTodayIntents.appex/Contents/MacOS/NewsTodayIntents -AppleLanguages ("en-US", "zh-Hans-US", "zh-Hant-US")
  504  5041     1   0 21Dec24 ??         0:00.06 /System/Applications/Notes.app/Contents/PlugIns/com.apple.Notes.IntentsExtension.appex/Contents/MacOS/com.apple.Notes.IntentsExtension -AppleLanguages ("en-US", "zh-Hans-US", "zh-Hant-US")
  504  5192     1   0 Sun12PM ??         0:00.03 /System/Library/Frameworks/Metal.framework/Versions/A/XPCServices/MTLCompilerService.xpc/Contents/MacOS/MTLCompilerService
  504  5193     1   0 Sun12PM ??         0:00.03 /System/Library/Frameworks/Metal.framework/Versions/A/XPCServices/MTLCompilerService.xpc/Contents/MacOS/MTLCompilerService
  504  5270     1   0 21Dec24 ??         0:00.02 /System/Library/CoreServices/Batteries.app/Contents/PlugIns/BatteriesAvocadoWidgetExtension.appex/Contents/MacOS/BatteriesAvocadoWidgetExtension
  504  5362     1   0 21Dec24 ??         0:00.14 /System/Library/CoreServices/PeopleViewService.app/Contents/PlugIns/PeopleWidget_macOSExtension.appex/Contents/MacOS/PeopleWidget_macOSExtension
  504  5363     1   0 21Dec24 ??         0:00.12 /System/Library/CoreServices/PeopleViewService.app/Contents/PlugIns/SelectPerson_iOS.appex/Contents/MacOS/SelectPerson_iOS -AppleLanguages ("en-US", "zh-Hans-US", "zh-Hant-US")
  504  5365     1   0 21Dec24 ??         0:00.03 /System/Library/CoreServices/Screen Time.app/Contents/PlugIns/ScreenTimeWidgetExtension.appex/Contents/MacOS/ScreenTimeWidgetExtension
  504  5368     1   0 21Dec24 ??         0:00.04 /System/Library/CoreServices/Screen Time.app/Contents/PlugIns/ScreenTimeWidgetIntentsExtension.appex/Contents/MacOS/ScreenTimeWidgetIntentsExtension -AppleLanguages ("en-US", "zh-Hans-US", "zh-Hant-US")
  504  5397     1   0 21Dec24 ??         0:00.04 /System/Applications/Photos.app/Contents/PlugIns/PhotosReliveWidget.appex/Contents/MacOS/PhotosReliveWidget
  504  5420     1   0 21Dec24 ??         0:00.20 /System/Applications/Podcasts.app/Contents/PlugIns/PodcastsWidget.appex/Contents/MacOS/PodcastsWidget
  504  5422     1   0 21Dec24 ??         0:00.03 /System/Applications/Reminders.app/Contents/PlugIns/RemindersWidgetExtension.appex/Contents/MacOS/RemindersWidgetExtension
  504  5423     1   0 21Dec24 ??         0:00.05 /System/Applications/Reminders.app/Contents/PlugIns/RemindersIntentsExtension.appex/Contents/MacOS/RemindersIntentsExtension -AppleLanguages ("en-US", "zh-Hans-US", "zh-Hant-US")
  504  5424     1   0 21Dec24 ??         0:00.05 /System/Applications/Shortcuts.app/Contents/PlugIns/ShortcutsWidgetExtension.appex/Contents/MacOS/ShortcutsWidgetExtension
  504  5434     1   0 21Dec24 ??         0:00.01 /System/Library/Frameworks/Intents.framework/XPCServices/intents_helper.xpc/Contents/MacOS/intents_helper
  504  5447     1   0 21Dec24 ??         0:13.49 /System/Applications/System Settings.app/Contents/PlugIns/csimporter.appex/Contents/MacOS/csimporter -AppleLanguages ("en-US", "zh-Hans-US", "zh-Hant-US")
  504  5453     1   0 21Dec24 ??         0:00.02 /System/Applications/Tips.app/Contents/PlugIns/TipsWidgetExtension.appex/Contents/MacOS/TipsWidgetExtension
  504  5509     1   0 21Dec24 ??         0:28.88 /System/Applications/Weather.app/Contents/PlugIns/WeatherWidget.appex/Contents/MacOS/WeatherWidget
  504  5510     1   0 21Dec24 ??         0:00.02 /System/Applications/VoiceMemos.app/Contents/PlugIns/VoiceMemosSettingsWidgetExtension.appex/Contents/MacOS/VoiceMemosSettingsWidgetExtension
  504  5535     1   0 21Dec24 ??         0:00.04 /System/Applications/Weather.app/Contents/PlugIns/WeatherIntents.appex/Contents/MacOS/WeatherIntents -AppleLanguages ("en-US", "zh-Hans-US", "zh-Hant-US")
  504  5582     1   0 Tue06PM ??         0:00.97 /System/Library/PrivateFrameworks/MediaConversionService.framework/Versions/A/XPCServices/com.apple.photos.ImageConversionService.xpc/Contents/MacOS/com.apple.photos.ImageConversionService
  504  5583     1   0 Tue06PM ??         0:00.70 /System/Library/PrivateFrameworks/MessagesBlastDoorSupport.framework/Versions/A/XPCServices/MessagesBlastDoorService.xpc/Contents/MacOS/MessagesBlastDoorService
  504  5590     1   0 Tue06PM ??         0:00.09 /System/Library/Frameworks/AudioToolbox.framework/XPCServices/com.apple.audio.SandboxHelper.xpc/Contents/MacOS/com.apple.audio.SandboxHelper
  504  5822     1   0 Fri02PM ??         0:00.03 /System/Library/Frameworks/Metal.framework/Versions/A/XPCServices/MTLCompilerService.xpc/Contents/MacOS/MTLCompilerService
  504  5823     1   0 Fri02PM ??         0:00.03 /System/Library/Frameworks/Metal.framework/Versions/A/XPCServices/MTLCompilerService.xpc/Contents/MacOS/MTLCompilerService
  504  5879     1   0 21Dec24 ??         0:00.48 /System/Library/Frameworks/InputMethodKit.framework/Resources/imklaunchagent
  504  5880     1   0 21Dec24 ??         1:21.65 /System/Library/PrivateFrameworks/TextInputUIMacHelper.framework/Versions/A/XPCServices/CursorUIViewService.xpc/Contents/MacOS/CursorUIViewService
  504  5881     1   0 21Dec24 ??         0:10.20 /System/Library/CoreServices/TextInputSwitcher.app/Contents/MacOS/TextInputSwitcher
  504  5882     1   0 21Dec24 ??         0:00.08 /System/Library/Frameworks/CryptoTokenKit.framework/ctkahp.bundle/Contents/MacOS/ctkahp
  504  5884     1   0 21Dec24 ??         0:07.91 /System/Library/Input Methods/PressAndHold.app/Contents/PlugIns/PAH_Extension.appex/Contents/MacOS/PAH_Extension -AppleLanguages ("en-US", "zh-Hans-US", "zh-Hant-US")
  504  5890     1   0 21Dec24 ??         0:04.11 /System/Cryptexes/App/usr/libexec/AuthenticationServicesAgent
  504  5891     1   0 21Dec24 ??         0:00.38 /usr/libexec/keychainsharingmessagingd
  504  5912     1   0 21Dec24 ??       144:36.96 /Applications/Google Chrome.app/Contents/MacOS/Google Chrome
  504  5914     1   0 21Dec24 ??        41:42.87 /Applications/Adobe Acrobat DC/Adobe Acrobat.app/Contents/MacOS/AdobeAcrobat
  504  5917     1   0 21Dec24 ??         0:34.26 /System/Applications/Freeform.app/Contents/MacOS/Freeform
  504  5919     1   0 21Dec24 ??         5:19.04 /Applications/Slack.app/Contents/MacOS/Slack
  504  5920     1   0 21Dec24 ??         4:39.97 /System/Applications/Messages.app/Contents/MacOS/Messages
  504  5921     1   0 21Dec24 ??         1:02.64 /System/Applications/Utilities/Terminal.app/Contents/MacOS/Terminal
  504  5923     1   0 21Dec24 ??         1:48.32 /System/Library/CoreServices/Dock.app/Contents/MacOS/Dock
  504  5924     1   0 21Dec24 ??         6:38.20 /System/Library/CoreServices/SystemUIServer.app/Contents/MacOS/SystemUIServer
  504  5925     1   0 21Dec24 ??         4:52.36 /System/Library/CoreServices/Finder.app/Contents/MacOS/Finder
  504  5928     1   0 21Dec24 ??         0:02.83 /System/Library/Frameworks/QuickLookUI.framework/Versions/A/XPCServices/QuickLookUIService.xpc/Contents/MacOS/QuickLookUIService
  504  5929     1   0 21Dec24 ??         0:56.73 /System/Library/CoreServices/Spotlight.app/Contents/MacOS/Spotlight
  504  5931     1   0 21Dec24 ??         0:28.39 /System/Library/PrivateFrameworks/AMPDevices.framework/Versions/A/Support/AMPDeviceDiscoveryAgent --launchd
  504  5934     1   0 21Dec24 ??         0:00.01 /System/Library/Frameworks/NetFS.framework/Versions/A/XPCServices/PlugInLibraryService.xpc/Contents/MacOS/PlugInLibraryService
  504  5935     1   0 21Dec24 ??         0:02.68 /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Resources/commerce
  504  5936     1   0 21Dec24 ??         0:09.83 /System/Library/CoreServices/Dock.app/Contents/XPCServices/com.apple.dock.extra.xpc/Contents/MacOS/com.apple.dock.extra
  504  5937     1   0 21Dec24 ??         0:12.00 /System/Library/PrivateFrameworks/CSExattrCrypto.framework/Versions/A/XPCServices/CSExattrCryptoService.xpc/Contents/MacOS/CSExattrCryptoService
  504  5938     1   0 21Dec24 ??         0:02.43 /Applications/Utilities/Adobe Sync/CoreSync/Core Sync.app/Contents/PlugIns/ACCFinderSync.appex/Contents/MacOS/ACCFinderSync -AppleLanguages ("en-US", "zh-Hans-US", "zh-Hant-US")
  504  5943     1   0 21Dec24 ??         0:00.23 /Applications/Google Chrome.app/Contents/Frameworks/Google Chrome Framework.framework/Versions/131.0.6778.205/Helpers/chrome_crashpad_handler --monitor-self-annotation=ptype=crashpad-handler --database=/Users/huazhou/Library/Application Support/Google/Chrome/Crashpad --url=https://clients2.google.com/cr/report --annotation=channel= --annotation=plat=OS X --annotation=prod=Chrome_Mac --annotation=ver=131.0.6778.205 --handshake-fd=5
  504  5944     1   0 21Dec24 ??         0:06.98 /System/Library/PrivateFrameworks/CallHistory.framework/Support/CallHistoryPluginHelper
  504  5947  5914   0 21Dec24 ??         0:14.55 /Applications/Adobe Acrobat DC/Adobe Acrobat.app/Contents/Helpers/AcroCEF/AcroCEF.app/Contents/MacOS/AcroCEF "/Applications/Adobe Acrobat DC/Adobe Acrobat.app/Contents/Helpers/AcroCEF/AcroCEF.app" --backgroundcolor=16514043
  504  5948     1   0 21Dec24 ??         0:00.01 /System/Library/Frameworks/NetFS.framework/Versions/A/XPCServices/PlugInLibraryService.xpc/Contents/MacOS/PlugInLibraryService
  504  5949     1   0 21Dec24 ??         0:00.23 /System/Library/Frameworks/ColorSync.framework/Support/colorsync.useragent
  504  5950     1   0 21Dec24 ??         0:00.01 /System/Library/Frameworks/ColorSync.framework/Versions/A/XPCServices/com.apple.ColorSyncXPCAgent.xpc/Contents/MacOS/com.apple.ColorSyncXPCAgent
  504  5951     1   0 21Dec24 ??         0:01.55 /System/Library/PrivateFrameworks/StocksKit.framework/XPCServices/StocksKitService.xpc/Contents/MacOS/StocksKitService
  504  5953  5947   0 21Dec24 ??         9:07.22 /Applications/Adobe Acrobat DC/Adobe Acrobat.app/Contents/Frameworks/AcroCEF Helper (GPU).app/Contents/MacOS/AcroCEF Helper (GPU) --type=gpu-process --log-severity=disable --user-agent-product=AcrobatServices/24.5.20320 Chrome/105.0.0.0 --lang=en-US --user-data-dir=/Users/huazhou/Library/Application Support/Adobe/AcroCef/DC/Acrobat/UserData --gpu-preferences=UAAAAAAAAAAgACAIAAAAAAAAAAAAAAAAAABgAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgFAAAAAAAAKAUAAAAAAAC4AQAANgAAALABAAAAAAAAuAEAAAAAAADAAQAAAAAAAMgBAAAAAAAA0AEAAAAAAADYAQAAAAAAAOABAAAAAAAA6AEAAAAAAADwAQAAAAAAAPgBAAAAAAAAAAIAAAAAAAAIAgAAAAAAABACAAAAAAAAGAIAAAAAAAAgAgAAAAAAACgCAAAAAAAAMAIAAAAAAAA4AgAAAAAAAEACAAAAAAAASAIAAAAAAABQAgAAAAAAAFgCAAAAAAAAYAIAAAAAAABoAgAAAAAAAHACAAAAAAAAeAIAAAAAAACAAgAAAAAAAIgCAAAAAAAAkAIAAAAAAACYAgAAAAAAAKACAAAAAAAAqAIAAAAAAACwAgAAAAAAALgCAAAAAAAAwAIAAAAAAADIAgAAAAAAANACAAAAAAAA2AIAAAAAAADgAgAAAAAAAOgCAAAAAAAA8AIAAAAAAAD4AgAAAAAAAAADAAAAAAAACAMAAAAAAAAQAwAAAAAAABgDAAAAAAAAIAMAAAAAAAAoAwAAAAAAADADAAAAAAAAOAMAAAAAAABAAwAAAAAAAEgDAAAAAAAAUAMAAAAAAABYAwAAAAAAABAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAGAAAAEAAAAAAAAAAAAAAABwAAABAAAAAAAAAAAAAAAAgAAAAQAAAAAAAAAAAAAAAJAAAAEAAAAAAAAAAAAAAACwAAABAAAAAAAAAAAAAAAAwAAAAQAAAAAAAAAAAAAAAOAAAAEAAAAAAAAAAAAAAADwAAABAAAAAAAAAAAQAAAAAAAAAQAAAAAAAAAAEAAAAGAAAAEAAAAAAAAAABAAAABwAAABAAAAAAAAAAAQAAAAgAAAAQAAAAAAAAAAEAAAAJAAAAEAAAAAAAAAABAAAACwAAABAAAAAAAAAAAQAAAAwAAAAQAAAAAAAAAAEAAAAOAAAAEAAAAAAAAAABAAAADwAAABAAAAAAAAAABAAAAAAAAAAQAAAAAAAAAAQAAAAGAAAAEAAAAAAAAAAEAAAABwAAABAAAAAAAAAABAAAAAgAAAAQAAAAAAAAAAQAAAAJAAAAEAAAAAAAAAAEAAAACwAAABAAAAAAAAAABAAAAAwAAAAQAAAAAAAAAAQAAAAOAAAAEAAAAAAAAAAEAAAADwAAABAAAAAAAAAABwAAAAAAAAAQAAAAAAAAAAcAAAAGAAAAEAAAAAAAAAAHAAAABwAAABAAAAAAAAAABwAAAAgAAAAQAAAAAAAAAAcAAAAJAAAAEAAAAAAAAAAHAAAACwAAABAAAAAAAAAABwAAAAwAAAAQAAAAAAAAAAcAAAAOAAAAEAAAAAAAAAAHAAAADwAAABAAAAAAAAAACAAAAAAAAAAQAAAAAAAAAAgAAAAGAAAAEAAAAAAAAAAIAAAABwAAABAAAAAAAAAACAAAAAgAAAAQAAAAAAAAAAgAAAAJAAAAEAAAAAAAAAAIAAAACwAAABAAAAAAAAAACAAAAAwAAAAQAAAAAAAAAAgAAAAOAAAAEAAAAAAAAAAIAAAADwAAABAAAAAAAAAACgAAAAAAAAAQAAAAAAAAAAoAAAAGAAAAEAAAAAAAAAAKAAAABwAAABAAAAAAAAAACgAAAAgAAAAQAAAAAAAAAAoAAAAJAAAAEAAAAAAAAAAKAAAACwAAABAAAAAAAAAACgAAAAwAAAAQAAAAAAAAAAoAAAAOAAAAEAAAAAAAAAAKAAAADwAAAAgAAAAAAAAACAAAAAAAAAA= --log-file=/Users/huazhou/Library/Logs/AcroCEF_debug.log --shared-files --field-trial-handle=1718379636,r,16886317359951895707,15443547768258620674,131072 --disable-features=BackForwardCache --seatbelt-client=19
  504  5956  5912   0 21Dec24 ??        84:52.87 /Applications/Google Chrome.app/Contents/Frameworks/Google Chrome Framework.framework/Versions/131.0.6778.205/Helpers/Google Chrome Helper (GPU).app/Contents/MacOS/Google Chrome Helper (GPU) --type=gpu-process --string-annotations --gpu-preferences=UAAAAAAAAAAgAAAEAAAAAAAAAAAAAAAAAABgAAEAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAEAAAAAAAAAAIAAAAAAAAAAgAAAAAAAAA --shared-files --field-trial-handle=1718379636,r,7761031812746268102,8910257349932112331,262144 --variations-seed-version=20241219-130728.147000 --seatbelt-client=19
  504  5959  5912   0 21Dec24 ??        27:10.72 /Applications/Google Chrome.app/Contents/Frameworks/Google Chrome Framework.framework/Versions/131.0.6778.205/Helpers/Google Chrome Helper.app/Contents/MacOS/Google Chrome Helper --type=utility --utility-sub-type=network.mojom.NetworkService --lang=en-US --service-sandbox-type=network --string-annotations --shared-files --field-trial-handle=1718379636,r,7761031812746268102,8910257349932112331,262144 --variations-seed-version=20241219-130728.147000 --seatbelt-client=19
  504  5968  5947   0 21Dec24 ??         0:00.54 /Applications/Adobe Acrobat DC/Adobe Acrobat.app/Contents/Frameworks/AcroCEF Helper.app/Contents/MacOS/AcroCEF Helper --type=utility --utility-sub-type=storage.mojom.StorageService --lang=en-US --service-sandbox-type=utility --use-mock-keychain --log-severity=disable --user-agent-product=AcrobatServices/24.5.20320 Chrome/105.0.0.0 --lang=en-US --user-data-dir=/Users/huazhou/Library/Application Support/Adobe/AcroCef/DC/Acrobat/UserData --log-file=/Users/huazhou/Library/Logs/AcroCEF_debug.log --shared-files --field-trial-handle=1718379636,r,16886317359951895707,15443547768258620674,131072 --disable-features=BackForwardCache --seatbelt-client=32
  504  5971  5947   0 21Dec24 ??         0:02.72 /Applications/Adobe Acrobat DC/Adobe Acrobat.app/Contents/Frameworks/AcroCEF Helper.app/Contents/MacOS/AcroCEF Helper --type=utility --utility-sub-type=network.mojom.NetworkService --lang=en-US --service-sandbox-type=network --use-mock-keychain --log-severity=disable --user-agent-product=AcrobatServices/24.5.20320 Chrome/105.0.0.0 --lang=en-US --user-data-dir=/Users/huazhou/Library/Application Support/Adobe/AcroCef/DC/Acrobat/UserData --log-file=/Users/huazhou/Library/Logs/AcroCEF_debug.log --shared-files --field-trial-handle=1718379636,r,16886317359951895707,15443547768258620674,131072 --disable-features=BackForwardCache --seatbelt-client=32
  504  5972     1   0 21Dec24 ??         0:00.09 /System/Library/Frameworks/VideoToolbox.framework/Versions/A/XPCServices/VTDecoderXPCService.xpc/Contents/MacOS/VTDecoderXPCService
  504  5978  5947   0 21Dec24 ??         0:01.03 /Applications/Adobe Acrobat DC/Adobe Acrobat.app/Contents/Frameworks/AcroCEF Helper (Renderer).app/Contents/MacOS/AcroCEF Helper (Renderer) --type=renderer --log-severity=disable --user-agent-product=AcrobatServices/24.5.20320 Chrome/105.0.0.0 --user-data-dir=/Users/huazhou/Library/Application Support/Adobe/AcroCef/DC/Acrobat/UserData --log-file=/Users/huazhou/Library/Logs/AcroCEF_debug.log --touch-events=enabled --lang=en-US --num-raster-threads=4 --enable-zero-copy --enable-gpu-memory-buffer-compositor-resources --enable-main-frame-before-activation --renderer-client-id=6 --launch-time-ticks=830849034 --shared-files --field-trial-handle=1718379636,r,16886317359951895707,15443547768258620674,131072 --disable-features=BackForwardCache --seatbelt-client=32
  504  5979  5947   0 21Dec24 ??         0:00.85 /Applications/Adobe Acrobat DC/Adobe Acrobat.app/Contents/Frameworks/AcroCEF Helper (Renderer).app/Contents/MacOS/AcroCEF Helper (Renderer) --type=renderer --log-severity=disable --user-agent-product=AcrobatServices/24.5.20320 Chrome/105.0.0.0 --user-data-dir=/Users/huazhou/Library/Application Support/Adobe/AcroCef/DC/Acrobat/UserData --log-file=/Users/huazhou/Library/Logs/AcroCEF_debug.log --touch-events=enabled --lang=en-US --num-raster-threads=4 --enable-zero-copy --enable-gpu-memory-buffer-compositor-resources --enable-main-frame-before-activation --renderer-client-id=7 --launch-time-ticks=830849745 --shared-files --field-trial-handle=1718379636,r,16886317359951895707,15443547768258620674,131072 --disable-features=BackForwardCache --seatbelt-client=32
  504  5980  5947   0 21Dec24 ??         0:07.55 /Applications/Adobe Acrobat DC/Adobe Acrobat.app/Contents/Frameworks/AcroCEF Helper (Renderer).app/Contents/MacOS/AcroCEF Helper (Renderer) --type=renderer --log-severity=disable --user-agent-product=AcrobatServices/24.5.20320 Chrome/105.0.0.0 --user-data-dir=/Users/huazhou/Library/Application Support/Adobe/AcroCef/DC/Acrobat/UserData --log-file=/Users/huazhou/Library/Logs/AcroCEF_debug.log --touch-events=enabled --lang=en-US --num-raster-threads=4 --enable-zero-copy --enable-gpu-memory-buffer-compositor-resources --enable-main-frame-before-activation --renderer-client-id=8 --launch-time-ticks=830919094 --shared-files --field-trial-handle=1718379636,r,16886317359951895707,15443547768258620674,131072 --disable-features=BackForwardCache --seatbelt-client=34
  504  5984  5912   0 21Dec24 ??         0:37.02 /Applications/Google Chrome.app/Contents/Frameworks/Google Chrome Framework.framework/Versions/131.0.6778.205/Helpers/Google Chrome Helper.app/Contents/MacOS/Google Chrome Helper --type=utility --utility-sub-type=storage.mojom.StorageService --lang=en-US --service-sandbox-type=service --string-annotations --shared-files --field-trial-handle=1718379636,r,7761031812746268102,8910257349932112331,262144 --variations-seed-version=20241219-130728.147000 --seatbelt-client=35
  504  5997     1   0 21Dec24 ??         0:00.08 /System/Cryptexes/App/usr/libexec/SafariLaunchAgent
  504  5998     1   0 21Dec24 ??         0:02.34 /System/Library/PrivateFrameworks/WebPrivacy.framework/webprivacyd
  504  5999     1   0 21Dec24 ??         0:54.41 /System/Library/Frameworks/Metal.framework/Versions/A/XPCServices/MTLCompilerService.xpc/Contents/MacOS/MTLCompilerService
  504  6000     1   0 21Dec24 ??         0:08.55 /System/Library/Frameworks/Metal.framework/Versions/A/XPCServices/MTLCompilerService.xpc/Contents/MacOS/MTLCompilerService
  504  6001     1   0 21Dec24 ??         0:02.54 /System/Library/Frameworks/LinkPresentation.framework/Versions/A/XPCServices/com.apple.LinkPresentation.LinkSnapshotGeneratorService.xpc/Contents/MacOS/com.apple.LinkPresentation.LinkSnapshotGeneratorService
  504  6003     1   0 21Dec24 ??         0:01.92 /System/Library/Frameworks/StoreKit.framework/Support/storekitagent
  504  6005     1   0 21Dec24 ??         0:00.24 /Applications/Slack.app/Contents/Frameworks/Electron Framework.framework/Helpers/chrome_crashpad_handler --no-upload-gzip --monitor-self-annotation=ptype=crashpad-handler --database=/Users/huazhou/Library/Application Support/Slack/Crashpad --url=https://slack.com/apps/sentryproxy/api/5277886/minidump/?sentry_key=fd30fe469dbf4aec9db40548e5acf91e --annotation=_productName=Slack --annotation=_version=4.41.105 --annotation=plat=OS X --annotation=prod=Electron --annotation=sentry___initialScope={"release":"Slack@4.41.105","environment":"production","user":{"id":"2fb6da68-8f4a-4bf6-b775-ddd7e2cf41dd"},"tags":{"uuid":"2fb6da68-8f4a-4bf6-b775-ddd7e2cf41dd"},"extra":{"sessionId":"MmZiNmRhNjgtOGY0YS00YmY2LWI3NzUtZGRkN2UyY2Y0MWRkXzE3MzQ4MDI4MzIwNjM="}} --annotation=ver=33.2.0 --handshake-fd=24
  504  6008  5947   0 21Dec24 ??         0:01.37 /Applications/Adobe Acrobat DC/Adobe Acrobat.app/Contents/Frameworks/AcroCEF Helper (Renderer).app/Contents/MacOS/AcroCEF Helper (Renderer) --type=renderer --log-severity=disable --user-agent-product=AcrobatServices/24.5.20320 Chrome/105.0.0.0 --user-data-dir=/Users/huazhou/Library/Application Support/Adobe/AcroCef/DC/Acrobat/UserData --log-file=/Users/huazhou/Library/Logs/AcroCEF_debug.log --touch-events=enabled --lang=en-US --num-raster-threads=4 --enable-zero-copy --enable-gpu-memory-buffer-compositor-resources --enable-main-frame-before-activation --renderer-client-id=9 --launch-time-ticks=833149814 --shared-files --field-trial-handle=1718379636,r,16886317359951895707,15443547768258620674,131072 --disable-features=BackForwardCache --seatbelt-client=29
  504  6009     1   0 21Dec24 ??         0:00.09 /System/Library/Frameworks/Metal.framework/Versions/A/XPCServices/MTLCompilerService.xpc/Contents/MacOS/MTLCompilerService
  504  6013     1   0 21Dec24 ??         0:00.02 /System/Library/Frameworks/Metal.framework/Versions/A/XPCServices/MTLCompilerService.xpc/Contents/MacOS/MTLCompilerService
  504  6017  5919   0 21Dec24 ??         1:30.35 /Applications/Slack.app/Contents/Frameworks/Slack Helper (GPU).app/Contents/MacOS/Slack Helper (GPU) --type=gpu-process --user-data-dir=/Users/huazhou/Library/Application Support/Slack --gpu-preferences=UAAAAAAAAAAgAAAEAAAAAAAAAAAAAAAAAABgAAEAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAEAAAAAAAAAAIAAAAAAAAAAgAAAAAAAAA --shared-files --field-trial-handle=1718379636,r,3428087782279552072,4903709949621972024,262144 --enable-features=ScreenCaptureKitMac,ScreenCaptureKitPickerScreen,ScreenCaptureKitStreamPickerSonoma --disable-features=AllowAggressiveThrottlingWithWebSocket,CalculateNativeWinOcclusion,EnableWatermarkView,HardwareMediaKeyHandling,IntensiveWakeUpThrottling,LogJsConsoleMessages,MacWebContentsOcclusion,PostQuantumKyber,RequestInitiatorSiteLockEnfocement,SpareRendererForSitePerProcess,TimeoutHangingVideoCaptureStarts,WebRtcHideLocalIpsWithMdns,WinRetrieveSuggestionsOnlyOnDemand --variations-seed-version --seatbelt-client=40
  504  6018  5919   0 21Dec24 ??         2:24.78 /Applications/Slack.app/Contents/Frameworks/Slack Helper.app/Contents/MacOS/Slack Helper --type=utility --utility-sub-type=network.mojom.NetworkService --lang=en-US --service-sandbox-type=network --user-data-dir=/Users/huazhou/Library/Application Support/Slack --standard-schemes=app,slack-webapp-dev --enable-sandbox --secure-schemes=app,slack-webapp-dev --bypasscsp-schemes=slack-webapp-dev --cors-schemes=slack-webapp-dev --fetch-schemes=slack-webapp-dev --service-worker-schemes=slack-webapp-dev --shared-files --field-trial-handle=1718379636,r,3428087782279552072,4903709949621972024,262144 --enable-features=ScreenCaptureKitMac,ScreenCaptureKitPickerScreen,ScreenCaptureKitStreamPickerSonoma --disable-features=AllowAggressiveThrottlingWithWebSocket,CalculateNativeWinOcclusion,EnableWatermarkView,HardwareMediaKeyHandling,IntensiveWakeUpThrottling,LogJsConsoleMessages,MacWebContentsOcclusion,PostQuantumKyber,RequestInitiatorSiteLockEnfocement,SpareRendererForSitePerProcess,TimeoutHangingVideoCaptureStarts,WebRtcHideLocalIpsWithMdns,WinRetrieveSuggestionsOnlyOnDemand --variations-seed-version --seatbelt-client=24
  504  6021  5919   0 21Dec24 ??        23:32.58 /Applications/Slack.app/Contents/Frameworks/Slack Helper (Renderer).app/Contents/MacOS/Slack Helper (Renderer) --type=renderer --user-data-dir=/Users/huazhou/Library/Application Support/Slack --standard-schemes=app,slack-webapp-dev --enable-sandbox --secure-schemes=app,slack-webapp-dev --bypasscsp-schemes=slack-webapp-dev --cors-schemes=slack-webapp-dev --fetch-schemes=slack-webapp-dev --service-worker-schemes=slack-webapp-dev --app-path=/Applications/Slack.app/Contents/Resources/app-arm64.asar --enable-sandbox --enable-blink-features=ExperimentalJSProfiler --disable-blink-features --lang=en-US --num-raster-threads=4 --enable-zero-copy --enable-gpu-memory-buffer-compositor-resources --enable-main-frame-before-activation --renderer-client-id=4 --time-ticks-at-unix-epoch=-1734801999190348 --launch-time-ticks=834043924 --shared-files --field-trial-handle=1718379636,r,3428087782279552072,4903709949621972024,262144 --enable-features=ScreenCaptureKitMac,ScreenCaptureKitPickerScreen,ScreenCaptureKitStreamPickerSonoma --disable-features=AllowAggressiveThrottlingWithWebSocket,CalculateNativeWinOcclusion,EnableWatermarkView,HardwareMediaKeyHandling,IntensiveWakeUpThrottling,LogJsConsoleMessages,MacWebContentsOcclusion,PostQuantumKyber,RequestInitiatorSiteLockEnfocement,SpareRendererForSitePerProcess,TimeoutHangingVideoCaptureStarts,WebRtcHideLocalIpsWithMdns,WinRetrieveSuggestionsOnlyOnDemand --variations-seed-version --window-type=main --seatbelt-client=69
  504  6023     1   0 21Dec24 ??         0:09.23 /System/Library/PrivateFrameworks/Synapse.framework/Support/contentlinkingd
  504  6024  5914   0 21Dec24 ??         0:13.05 /Applications/Adobe Acrobat DC/Adobe Acrobat.app/Contents/Helpers/AdobeResourceSynchronizer.app/Contents/MacOS/AdobeResourceSynchronizer -c
  504  6025     1   0 21Dec24 ??         0:07.16 /System/Library/Frameworks/Metal.framework/Versions/A/XPCServices/MTLCompilerService.xpc/Contents/MacOS/MTLCompilerService
  504  6026     1   0 21Dec24 ??         0:02.06 /System/Library/Frameworks/Metal.framework/Versions/A/XPCServices/MTLCompilerService.xpc/Contents/MacOS/MTLCompilerService
  504  6031     1   0 21Dec24 ??         0:00.30 /Library/Application Support/Citrix Receiver/SafariAdapter.app/Contents/MacOS/SafariAdapter
  504  6034     1   0 21Dec24 ??         0:00.03 /usr/bin/open -W /Applications/QualysCloudAgent.app
    0  6035     1   0 21Dec24 ??         1:35.21 /Applications/GlobalProtect.app/Contents/Resources/PanGPS
  504  6039     1   0 21Dec24 ??         0:04.24 /System/Library/Image Capture/Support/icdd
  504  6041     1   0 21Dec24 ??         1:14.07 /Applications/GlobalProtect.app/Contents/MacOS/GlobalProtect
  504  6042     1   0 21Dec24 ??         0:01.44 /Library/Application Support/Box/Box/Autoupdater/Box Helper.app/Contents/MacOS/Box Helper
  504  6043     1   0 21Dec24 ??         0:01.93 /Library/FireEye/xagt/xagtnotif.app/Contents/MacOS/xagtnotif
  504  6044     1   0 21Dec24 ??         0:02.08 /Users/huazhou/Library/Application Support/iStat Menus 7/iStat Menus Helper.app/Contents/MacOS/iStat Menus Helper
  504  6045     1   0 21Dec24 ??         0:06.11 /System/Library/PrivateFrameworks/AskPermission.framework/Versions/A/Resources/askpermissiond
  504  6047     1   0 21Dec24 ??         0:02.14 /System/Library/CoreServices/AirPlayUIAgent.app/Contents/MacOS/AirPlayUIAgent --launchd
  504  6049     1   0 21Dec24 ??         5:39.06 /usr/local/libexec/Citrix Workspace Helper.app/Contents/MacOS/Citrix Workspace Helper
  504  6050     1   0 21Dec24 ??         1:18.42 /Applications/Utilities/Adobe Creative Cloud/ACC/Creative Cloud.app/Contents/MacOS/Creative Cloud --showwindow=false --onOSstartup=true
  504  6051     1   0 21Dec24 ??         4:48.39 /Applications/Aruba Networks/ClearPassOnGuard.app/Contents/MacOS/ClearPassOnGuard
  504  6052     1   0 21Dec24 ??        24:56.65 /Users/huazhou/Library/Application Support/iStat Menus 7/iStat Menus Menubar.app/Contents/MacOS/iStat Menus Menubar
  504  6054     1   0 21Dec24 ??         0:18.97 /System/Library/CoreServices/TextInputMenuAgent.app/Contents/MacOS/TextInputMenuAgent
  504  6055     1   0 21Dec24 ??         0:07.23 /Applications/Grammarly Desktop.app/Contents/Library/LaunchAgents/Grammarly Desktop Helper.app/Contents/MacOS/Grammarly Desktop Helper
  504  6057     1   0 21Dec24 ??         1:32.99 /usr/local/libexec/ServiceRecords.app/Contents/MacOS/ServiceRecords
  504  6058     1   0 21Dec24 ??         1:32.12 /opt/cisco/secureclient/bin/Cisco Secure Client - AnyConnect VPN Service.app/Contents/MacOS/Cisco Secure Client - AnyConnect VPN Service
  504  6060     1   0 21Dec24 ??        50:12.64 /Applications/Grammarly Desktop.app/Contents/MacOS/Grammarly Desktop launchSourceLoginItem
  504  6064     1   0 21Dec24 ??         0:05.81 /System/Library/Frameworks/WebKit.framework/Versions/A/XPCServices/com.apple.WebKit.GPU.xpc/Contents/MacOS/com.apple.WebKit.GPU
  504  6065     1   0 21Dec24 ??         0:00.13 /System/Library/Frameworks/WebKit.framework/Versions/A/XPCServices/com.apple.WebKit.WebContent.xpc/Contents/MacOS/com.apple.WebKit.WebContent
  504  6066     1   0 21Dec24 ??         0:00.38 /System/Library/Frameworks/MediaAccessibility.framework/Versions/A/XPCServices/com.apple.accessibility.mediaaccessibilityd.xpc/Contents/MacOS/com.apple.accessibility.mediaaccessibilityd
  504  6067     1   0 21Dec24 ??         0:34.42 /System/Library/Frameworks/WebKit.framework/Versions/A/XPCServices/com.apple.WebKit.Networking.xpc/Contents/MacOS/com.apple.WebKit.Networking
  504  6093     1   0 21Dec24 ??         0:00.02 /System/Library/Frameworks/NetFS.framework/Versions/A/XPCServices/PlugInLibraryService.xpc/Contents/MacOS/PlugInLibraryService
  504  6094  5919   0 21Dec24 ??         0:17.65 /Applications/Slack.app/Contents/Frameworks/Slack Helper.app/Contents/MacOS/Slack Helper --type=utility --utility-sub-type=audio.mojom.AudioService --lang=en-US --service-sandbox-type=audio --message-loop-type-ui --user-data-dir=/Users/huazhou/Library/Application Support/Slack --standard-schemes=app,slack-webapp-dev --enable-sandbox --secure-schemes=app,slack-webapp-dev --bypasscsp-schemes=slack-webapp-dev --cors-schemes=slack-webapp-dev --fetch-schemes=slack-webapp-dev --service-worker-schemes=slack-webapp-dev --shared-files --field-trial-handle=1718379636,r,3428087782279552072,4903709949621972024,262144 --enable-features=ScreenCaptureKitMac,ScreenCaptureKitPickerScreen,ScreenCaptureKitStreamPickerSonoma --disable-features=AllowAggressiveThrottlingWithWebSocket,CalculateNativeWinOcclusion,EnableWatermarkView,HardwareMediaKeyHandling,IntensiveWakeUpThrottling,LogJsConsoleMessages,MacWebContentsOcclusion,PostQuantumKyber,RequestInitiatorSiteLockEnfocement,SpareRendererForSitePerProcess,TimeoutHangingVideoCaptureStarts,WebRtcHideLocalIpsWithMdns,WinRetrieveSuggestionsOnlyOnDemand --variations-seed-version --seatbelt-client=84
  504  6095  5919   0 21Dec24 ??         0:18.77 /Applications/Slack.app/Contents/Frameworks/Slack Helper (Plugin).app/Contents/MacOS/Slack Helper (Plugin) --type=utility --utility-sub-type=video_capture.mojom.VideoCaptureService --lang=en-US --service-sandbox-type=none --message-loop-type-ui --user-data-dir=/Users/huazhou/Library/Application Support/Slack --standard-schemes=app,slack-webapp-dev --enable-sandbox --secure-schemes=app,slack-webapp-dev --bypasscsp-schemes=slack-webapp-dev --cors-schemes=slack-webapp-dev --fetch-schemes=slack-webapp-dev --service-worker-schemes=slack-webapp-dev --shared-files --field-trial-handle=1718379636,r,3428087782279552072,4903709949621972024,262144 --enable-features=ScreenCaptureKitMac,ScreenCaptureKitPickerScreen,ScreenCaptureKitStreamPickerSonoma --disable-features=AllowAggressiveThrottlingWithWebSocket,CalculateNativeWinOcclusion,EnableWatermarkView,HardwareMediaKeyHandling,IntensiveWakeUpThrottling,LogJsConsoleMessages,MacWebContentsOcclusion,PostQuantumKyber,RequestInitiatorSiteLockEnfocement,SpareRendererForSitePerProcess,TimeoutHangingVideoCaptureStarts,WebRtcHideLocalIpsWithMdns,WinRetrieveSuggestionsOnlyOnDemand --variations-seed-version
  504  6097     1   0 21Dec24 ??         0:00.78 /System/Library/PrivateFrameworks/SiriTTSService.framework/Versions/A/XPCServices/com.apple.SiriTTSService.TrialProxy.xpc/Contents/MacOS/com.apple.SiriTTSService.TrialProxy
  504  6110     1   0 21Dec24 ??         0:02.38 /Applications/QualysCloudAgent.app/Contents/MacOS/QualysCloudAgent
  504  6112     1   0 21Dec24 ??         4:14.66 /Applications/Box.app/Contents/MacOS/Box
  504  6124     1   0 21Dec24 ??         4:02.38 /Library/Application Support/Adobe/Adobe Desktop Common/IPCBox/AdobeIPCBroker.app/Contents/MacOS/AdobeIPCBroker -launchedbyvulcan /Applications/Utilities/Adobe Creative Cloud Experience/CCXProcess/CCXProcess.app/Contents/MacOS/Creative Cloud Content Manager.node
  504  6129     1   0 21Dec24 ??         0:06.08 /System/Library/PrivateFrameworks/UIFoundation.framework/Versions/A/XPCServices/nsattributedstringagent.xpc/Contents/MacOS/nsattributedstringagent
  504  6137     1   0 21Dec24 ??         0:00.02 /System/Library/Frameworks/AudioToolbox.framework/XPCServices/com.apple.audio.SandboxHelper.xpc/Contents/MacOS/com.apple.audio.SandboxHelper
  504  6140     1   0 21Dec24 ??         0:00.05 /System/Library/Frameworks/Metal.framework/Versions/A/XPCServices/MTLCompilerService.xpc/Contents/MacOS/MTLCompilerService
  504  6144     1   0 21Dec24 ??         0:00.55 /System/Library/Frameworks/VideoToolbox.framework/Versions/A/XPCServices/VTEncoderXPCService.xpc/Contents/MacOS/VTEncoderXPCService
  504  6164  6112   0 21Dec24 ??         0:08.24 /Applications/Box.app/Contents/Resources/Box UI.app/Contents/MacOS/Box UI --product-name Box
  504  6165  6050   0 21Dec24 ??         0:07.37 /Applications/Utilities/Adobe Creative Cloud/ACC/Creative Cloud.app/Contents/MacOS/../Frameworks/Creative Cloud UI Helper (GPU).app/Contents/MacOS/Creative Cloud UI Helper (GPU) --type=gpu-process --no-sandbox --locales-dir-path=/Library/Application Support/Adobe/Adobe Desktop Common/CEF/Chromium Embedded Framework.framework/Resources --log-severity=warning --user-agent=Mozilla/5.0 (Macintosh; Apple Silicon15_2_0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/116.0.5845.190 Safari/537.36 CreativeCloud/6.4.0.361 --lang=en --user-data-dir=/Users/huazhou/Library/Application Support/CEF/User Data --gpu-preferences=WAAAAAAAAAAgAAAEAAAAAAAAAAAAAAAAAABgAAAAAAA4AAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAcAAAAAAABoBwAAAAAAAHgCAABOAAAAcAIAAAAAAAB4AgAAAAAAAIACAAAAAAAAiAIAAAAAAACQAgAAAAAAAJgCAAAAAAAAoAIAAAAAAACoAgAAAAAAALACAAAAAAAAuAIAAAAAAADAAgAAAAAAAMgCAAAAAAAA0AIAAAAAAADYAgAAAAAAAOACAAAAAAAA6AIAAAAAAADwAgAAAAAAAPgCAAAAAAAAAAMAAAAAAAAIAwAAAAAAABADAAAAAAAAGAMAAAAAAAAgAwAAAAAAACgDAAAAAAAAMAMAAAAAAAA4AwAAAAAAAEADAAAAAAAASAMAAAAAAABQAwAAAAAAAFgDAAAAAAAAYAMAAAAAAABoAwAAAAAAAHADAAAAAAAAeAMAAAAAAACAAwAAAAAAAIgDAAAAAAAAkAMAAAAAAACYAwAAAAAAAKADAAAAAAAAqAMAAAAAAACwAwAAAAAAALgDAAAAAAAAwAMAAAAAAADIAwAAAAAAANADAAAAAAAA2AMAAAAAAADgAwAAAAAAAOgDAAAAAAAA8AMAAAAAAAD4AwAAAAAAAAAEAAAAAAAACAQAAAAAAAAQBAAAAAAAABgEAAAAAAAAIAQAAAAAAAAoBAAAAAAAADAEAAAAAAAAOAQAAAAAAABABAAAAAAAAEgEAAAAAAAAUAQAAAAAAABYBAAAAAAAAGAEAAAAAAAAaAQAAAAAAABwBAAAAAAAAHgEAAAAAAAAgAQAAAAAAACIBAAAAAAAAJAEAAAAAAAAmAQAAAAAAACgBAAAAAAAAKgEAAAAAAAAsAQAAAAAAAC4BAAAAAAAAMAEAAAAAAAAyAQAAAAAAADQBAAAAAAAANgEAAAAAAAAEAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAEAAAAQAAAAAAAAAAAAAAACAAAAEAAAAAAAAAAAAAAAAwAAABAAAAAAAAAAAAAAAAYAAAAQAAAAAAAAAAAAAAAHAAAAEAAAAAAAAAAAAAAACAAAABAAAAAAAAAAAAAAAAkAAAAQAAAAAAAAAAAAAAALAAAAEAAAAAAAAAAAAAAADAAAABAAAAAAAAAAAAAAAA4AAAAQAAAAAAAAAAAAAAAPAAAAEAAAAAAAAAAAAAAAEAAAABAAAAAAAAAAAQAAAAAAAAAQAAAAAAAAAAEAAAABAAAAEAAAAAAAAAABAAAAAgAAABAAAAAAAAAAAQAAAAMAAAAQAAAAAAAAAAEAAAAGAAAAEAAAAAAAAAABAAAABwAAABAAAAAAAAAAAQAAAAgAAAAQAAAAAAAAAAEAAAAJAAAAEAAAAAAAAAABAAAACwAAABAAAAAAAAAAAQAAAAwAAAAQAAAAAAAAAAEAAAAOAAAAEAAAAAAAAAABAAAADwAAABAAAAAAAAAAAQAAABAAAAAQAAAAAAAAAAQAAAAAAAAAEAAAAAAAAAAEAAAAAQAAABAAAAAAAAAABAAAAAIAAAAQAAAAAAAAAAQAAAADAAAAEAAAAAAAAAAEAAAABgAAABAAAAAAAAAABAAAAAcAAAAQAAAAAAAAAAQAAAAIAAAAEAAAAAAAAAAEAAAACQAAABAAAAAAAAAABAAAAAsAAAAQAAAAAAAAAAQAAAAMAAAAEAAAAAAAAAAEAAAADgAAABAAAAAAAAAABAAAAA8AAAAQAAAAAAAAAAQAAAAQAAAAEAAAAAAAAAAHAAAAAAAAABAAAAAAAAAABwAAAAEAAAAQAAAAAAAAAAcAAAACAAAAEAAAAAAAAAAHAAAAAwAAABAAAAAAAAAABwAAAAYAAAAQAAAAAAAAAAcAAAAHAAAAEAAAAAAAAAAHAAAACAAAABAAAAAAAAAABwAAAAkAAAAQAAAAAAAAAAcAAAALAAAAEAAAAAAAAAAHAAAADAAAABAAAAAAAAAABwAAAA4AAAAQAAAAAAAAAAcAAAAPAAAAEAAAAAAAAAAHAAAAEAAAABAAAAAAAAAACAAAAAAAAAAQAAAAAAAAAAgAAAABAAAAEAAAAAAAAAAIAAAAAgAAABAAAAAAAAAACAAAAAMAAAAQAAAAAAAAAAgAAAAGAAAAEAAAAAAAAAAIAAAABwAAABAAAAAAAAAACAAAAAgAAAAQAAAAAAAAAAgAAAAJAAAAEAAAAAAAAAAIAAAACwAAABAAAAAAAAAACAAAAAwAAAAQAAAAAAAAAAgAAAAOAAAAEAAAAAAAAAAIAAAADwAAABAAAAAAAAAACAAAABAAAAAQAAAAAAAAAAoAAAAAAAAAEAAAAAAAAAAKAAAAAQAAABAAAAAAAAAACgAAAAIAAAAQAAAAAAAAAAoAAAADAAAAEAAAAAAAAAAKAAAABgAAABAAAAAAAAAACgAAAAcAAAAQAAAAAAAAAAoAAAAIAAAAEAAAAAAAAAAKAAAACQAAABAAAAAAAAAACgAAAAsAAAAQAAAAAAAAAAoAAAAMAAAAEAAAAAAAAAAKAAAADgAAABAAAAAAAAAACgAAAA8AAAAQAAAAAAAAAAoAAAAQAAAACAAAAAAAAAAIAAAAAAAAAA== --log-file=/Users/huazhou/Library/Logs/CreativeCloud/ACC/CEF.log --shared-files --field-trial-handle=1718379636,r,9093722848701855478,2696465043092721564,262144 --disable-features=BackForwardCache,DocumentPictureInPictureAPI
  504  6167  6112   0 21Dec24 ??         6:41.42 /Applications/Box.app/Contents/MacOS/streem --log-level info --folder-prefetch-depth 1 --product-name Box --default-refetch-timeout-seconds 864000 --database-id 9d61bf28-5420-11ee-8aa0-54de2d1375e6 --enable-macos-14-workaround
  504  6168  6050   0 21Dec24 ??         3:51.68 /Library/Application Support/Adobe/Adobe Desktop Common/ADS/Adobe Desktop Service.app/Contents/MacOS/Adobe Desktop Service --onOSstartup=true --showwindow=false --waitForRegistration=true
  504  6169  6050   0 21Dec24 ??         0:00.08 /Applications/Utilities/Adobe Creative Cloud/ACC/Creative Cloud.app/Contents/MacOS/../Frameworks/Creative Cloud UI Helper.app/Contents/MacOS/Creative Cloud UI Helper --type=utility --utility-sub-type=storage.mojom.StorageService --lang=en --service-sandbox-type=service --no-sandbox --use-mock-keychain --locales-dir-path=/Library/Application Support/Adobe/Adobe Desktop Common/CEF/Chromium Embedded Framework.framework/Resources --log-severity=warning --user-agent=Mozilla/5.0 (Macintosh; Apple Silicon15_2_0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/116.0.5845.190 Safari/537.36 CreativeCloud/6.4.0.361 --lang=en --user-data-dir=/Users/huazhou/Library/Application Support/CEF/User Data --log-file=/Users/huazhou/Library/Logs/CreativeCloud/ACC/CEF.log --shared-files --field-trial-handle=1718379636,r,9093722848701855478,2696465043092721564,262144 --disable-features=BackForwardCache,DocumentPictureInPictureAPI
  504  6170  6050   0 21Dec24 ??         0:02.88 /Applications/Utilities/Adobe Creative Cloud/ACC/Creative Cloud.app/Contents/MacOS/../Frameworks/Creative Cloud UI Helper.app/Contents/MacOS/Creative Cloud UI Helper --type=utility --utility-sub-type=network.mojom.NetworkService --lang=en --service-sandbox-type=network --no-sandbox --use-mock-keychain --locales-dir-path=/Library/Application Support/Adobe/Adobe Desktop Common/CEF/Chromium Embedded Framework.framework/Resources --log-severity=warning --user-agent=Mozilla/5.0 (Macintosh; Apple Silicon15_2_0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/116.0.5845.190 Safari/537.36 CreativeCloud/6.4.0.361 --lang=en --user-data-dir=/Users/huazhou/Library/Application Support/CEF/User Data --log-file=/Users/huazhou/Library/Logs/CreativeCloud/ACC/CEF.log --shared-files --field-trial-handle=1718379636,r,9093722848701855478,2696465043092721564,262144 --disable-features=BackForwardCache,DocumentPictureInPictureAPI
  504  6171  6050   0 21Dec24 ??         3:48.14 /Applications/Utilities/Adobe Creative Cloud/ACC/Creative Cloud.app/Contents/MacOS/../Frameworks/Creative Cloud UI Helper (Renderer).app/Contents/MacOS/Creative Cloud UI Helper (Renderer) --type=renderer --locales-dir-path=/Library/Application Support/Adobe/Adobe Desktop Common/CEF/Chromium Embedded Framework.framework/Resources --log-severity=warning --user-agent=Mozilla/5.0 (Macintosh; Apple Silicon15_2_0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/116.0.5845.190 Safari/537.36 CreativeCloud/6.4.0.361 --user-data-dir=/Users/huazhou/Library/Application Support/CEF/User Data --first-renderer-process --no-sandbox --autoplay-policy=no-user-gesture-required --log-file=/Users/huazhou/Library/Logs/CreativeCloud/ACC/CEF.log --js-flags=--expose-gc --lang=en --num-raster-threads=4 --enable-zero-copy --enable-gpu-memory-buffer-compositor-resources --enable-main-frame-before-activation --renderer-client-id=5 --time-ticks-at-unix-epoch=-1734801999190372 --launch-time-ticks=839694051 --shared-files --field-trial-handle=1718379636,r,9093722848701855478,2696465043092721564,262144 --disable-features=BackForwardCache,DocumentPictureInPictureAPI
  504  6201     1   0 21Dec24 ??         0:20.96 /Library/Apple/System/Library/CoreServices/XProtect.app/Contents/XPCServices/XProtectPluginService.xpc/Contents/MacOS/XProtectPluginService
  504  6215  6168   0 21Dec24 ??         1:00.17 /Applications/Utilities/Adobe Creative Cloud/ACC/Creative Cloud Helper.app/Contents/MacOS/Creative Cloud Helper --remoteApplet=LiveType_BL --remoteAppletInstanceID=3E218F86-9A4A-456C-B2AA-D6DC656A920C --remoteHelper=CCH_LiveType --vulcanID=COSY
  504  6219     1   0 21Dec24 ??         0:00.60 /System/Library/Frameworks/Metal.framework/Versions/A/XPCServices/MTLCompilerService.xpc/Contents/MacOS/MTLCompilerService
  504  6239     1   0 21Dec24 ??         0:00.03 /System/Library/Frameworks/Metal.framework/Versions/A/XPCServices/MTLCompilerService.xpc/Contents/MacOS/MTLCompilerService
  504  6241  6112   0 21Dec24 ??         0:00.03 /Applications/Box.app/Contents/MacOS/python -B -c from multiprocessing.resource_tracker import main;main(27)
  504  6251     1   0 21Dec24 ??         0:00.74 /System/Library/Frameworks/ExtensionFoundation.framework/Versions/A/XPCServices/extensionkitservice.xpc/Contents/MacOS/extensionkitservice
  504  6271     1   0 21Dec24 ??         9:05.90 /Applications/Utilities/Adobe Sync/CoreSync/Core Sync.app/Contents/MacOS/Core Sync
  504  6286     1   0 21Dec24 ??         2:17.46 /System/Library/PrivateFrameworks/SafariSafeBrowsing.framework/com.apple.Safari.SafeBrowsing.Service
  504  6363     1   0 21Dec24 ??         2:23.83 /Applications/Citrix Workspace.app/Contents/MacOS/Citrix Workspace LaunchStatusMenuFromHelper
  504  6387     1   0 21Dec24 ??         0:07.70 /System/Library/Frameworks/WebKit.framework/Versions/A/XPCServices/com.apple.WebKit.GPU.xpc/Contents/MacOS/com.apple.WebKit.GPU
  504  6388     1   0 21Dec24 ??         0:00.41 /System/Library/Frameworks/WebKit.framework/Versions/A/XPCServices/com.apple.WebKit.WebContent.xpc/Contents/MacOS/com.apple.WebKit.WebContent
  504  6389     1   0 21Dec24 ??         0:01.25 /System/Library/Frameworks/WebKit.framework/Versions/A/XPCServices/com.apple.WebKit.Networking.xpc/Contents/MacOS/com.apple.WebKit.Networking
  504  6395     1   0 21Dec24 ??         0:00.16 /System/Library/Frameworks/WebKit.framework/Versions/A/XPCServices/com.apple.WebKit.WebContent.xpc/Contents/MacOS/com.apple.WebKit.WebContent
  504  6396     1   0 21Dec24 ??         0:00.19 /System/Library/Frameworks/WebKit.framework/Versions/A/XPCServices/com.apple.WebKit.WebContent.xpc/Contents/MacOS/com.apple.WebKit.WebContent
  504  6401     1   0 21Dec24 ??         0:00.04 /System/Library/Frameworks/Metal.framework/Versions/A/XPCServices/MTLCompilerService.xpc/Contents/MacOS/MTLCompilerService
  504  6402     1   0 21Dec24 ??         0:00.03 /System/Library/Frameworks/Metal.framework/Versions/A/XPCServices/MTLCompilerService.xpc/Contents/MacOS/MTLCompilerService
  504  6444  5914   0 21Dec24 ??         0:00.00 <defunct>
  504  6447     1   0 21Dec24 ??         0:55.43 /System/Library/Services/AppleSpell.service/Contents/MacOS/AppleSpell
  504  6448     1   0 21Dec24 ??         0:07.77 /usr/libexec/naturallanguaged
  504  6507     1   0 21Dec24 ??         0:00.24 /System/Library/PrivateFrameworks/WeatherDaemon.framework/weatherd
  504  6520     1   0 21Dec24 ??         0:03.22 /usr/libexec/adprivacyd
  504  6604     1   0 21Dec24 ??         0:20.10 /usr/libexec/studentd
  504  6802     1   0 21Dec24 ??         0:11.01 /usr/libexec/SidecarRelay
  504  6803     1   0 21Dec24 ??        11:57.64 /System/Library/CoreServices/UniversalControl.app/Contents/MacOS/UniversalControl
  504  6804     1   0 21Dec24 ??         0:01.71 /usr/sbin/BTLEServerAgent
  504  6947     1   0 21Dec24 ??         0:12.79 /System/Library/CoreServices/appplaceholdersyncd
  504  6990     1   0 21Dec24 ??         0:09.83 /System/Library/PrivateFrameworks/StreamingZip.framework/Versions/A/XPCServices/com.apple.StreamingUnzipService.xpc/Contents/MacOS/com.apple.StreamingUnzipService
  504  7337     1   0 21Dec24 ??         0:08.39 /System/Library/Frameworks/LocalAuthentication.framework/Support/coreautha.bundle/Contents/MacOS/coreautha
  504  8193     1   0 21Dec24 ??         0:04.09 /System/Library/PrivateFrameworks/MobileDevice.framework/Resources/MobileDeviceUpdater.app/Contents/MacOS/MobileDeviceUpdater
  504  8195     1   0 21Dec24 ??         0:00.07 /usr/libexec/USBAgent
  504  8198     1   0 21Dec24 ??         0:00.10 /Library/Apple/System/Library/PrivateFrameworks/MobileDevice.framework/Versions/A/XPCServices/MDRemoteServiceSupport.xpc/Contents/MacOS/MDRemoteServiceSupport
  504  8213     1   0 21Dec24 ??        18:48.62 /System/Library/Frameworks/VideoToolbox.framework/Versions/A/XPCServices/VTDecoderXPCService.xpc/Contents/MacOS/VTDecoderXPCService
  504  8214     1   0 21Dec24 ??         0:00.07 /System/Library/Frameworks/Metal.framework/Versions/A/XPCServices/MTLCompilerService.xpc/Contents/MacOS/MTLCompilerService
  504  8336     1   0 Sun12PM ??         0:03.85 /System/Library/CoreServices/OSDUIHelper.app/Contents/MacOS/OSDUIHelper
  504  8588     1   0 Sat10PM ??         0:00.30 /System/Library/PrivateFrameworks/IMDPersistence.framework/IMAutomaticHistoryDeletionAgent.app/Contents/MacOS/IMAutomaticHistoryDeletionAgent
  504  9504  5912   0 21Dec24 ??         1:55.60 /Applications/Google Chrome.app/Contents/Frameworks/Google Chrome Framework.framework/Versions/131.0.6778.205/Helpers/Google Chrome Helper.app/Contents/MacOS/Google Chrome Helper --type=utility --utility-sub-type=audio.mojom.AudioService --lang=en-US --service-sandbox-type=audio --message-loop-type-ui --string-annotations --shared-files --field-trial-handle=1718379636,r,7761031812746268102,8910257349932112331,262144 --variations-seed-version=20241219-130728.147000 --seatbelt-client=218
  504  9505  5912   0 21Dec24 ??         0:21.85 /Applications/Google Chrome.app/Contents/Frameworks/Google Chrome Framework.framework/Versions/131.0.6778.205/Helpers/Google Chrome Helper (Plugin).app/Contents/MacOS/Google Chrome Helper (Plugin) --type=utility --utility-sub-type=video_capture.mojom.VideoCaptureService --lang=en-US --service-sandbox-type=none --message-loop-type-ui --string-annotations --shared-files --field-trial-handle=1718379636,r,7761031812746268102,8910257349932112331,262144 --variations-seed-version=20241219-130728.147000
  504  9526     1   0 21Dec24 ??         0:05.62 /System/Library/CoreServices/Dock.app/Contents/XPCServices/DockHelper.xpc/Contents/MacOS/DockHelper
  504  9541     1   0 21Dec24 ??         0:00.09 /System/Library/Frameworks/VideoToolbox.framework/Versions/A/XPCServices/VTEncoderXPCService.xpc/Contents/MacOS/VTEncoderXPCService
  504 10644     1   0 21Dec24 ??         6:25.16 /System/Library/Frameworks/Contacts.framework/Support/contactsd
  504 10757     1   0 21Dec24 ??         0:00.03 /System/Library/PrivateFrameworks/ToneLibrary.framework/Versions/A/XPCServices/com.apple.tonelibraryd.xpc/Contents/MacOS/com.apple.tonelibraryd
  504 10838     1   0 21Dec24 ??         0:00.06 /System/Library/Frameworks/AudioToolbox.framework/XPCServices/com.apple.audio.SandboxHelper.xpc/Contents/MacOS/com.apple.audio.SandboxHelper
  504 10849     1   0 21Dec24 ??         2:55.24 /System/Library/CoreServices/Siri.app/Contents/MacOS/Siri launchd
  504 10850     1   0 21Dec24 ??         0:12.74 /System/Library/PrivateFrameworks/CoreEmbeddedSpeechRecognition.framework/Versions/A/XPCServices/com.apple.siri.embeddedspeech.xpc/Contents/MacOS/com.apple.siri.embeddedspeech
  504 10853     1   0 21Dec24 ??         0:38.05 /System/Library/CoreServices/Siri.app/Contents/XPCServices/SiriNCService.xpc/Contents/MacOS/SiriNCService
  504 10857     1   0 21Dec24 ??         0:17.17 /System/Library/PrivateFrameworks/AssistantServices.framework/Versions/A/Support/assistant_service
  504 10862     1   0 21Dec24 ??         0:00.09 /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Resources/storeaccountd
  504 10943     1   0 21Dec24 ??         0:00.62 /System/Library/PrivateFrameworks/SiriTTSService.framework/Versions/A/XPCServices/com.apple.SiriTTSService.TrialProxy.xpc/Contents/MacOS/com.apple.SiriTTSService.TrialProxy
  504 10946     1   0 21Dec24 ??         0:00.02 /System/Library/PrivateFrameworks/SafariFoundation.framework/Versions/A/XPCServices/CredentialProviderExtensionHelper.xpc/Contents/MacOS/CredentialProviderExtensionHelper
  504 11195     1   0 Wed10AM ??         0:00.04 /System/Library/Frameworks/Metal.framework/Versions/A/XPCServices/MTLCompilerService.xpc/Contents/MacOS/MTLCompilerService
  504 11483     1   0 21Dec24 ??         0:00.02 /System/Library/Frameworks/Metal.framework/Versions/A/XPCServices/MTLCompilerService.xpc/Contents/MacOS/MTLCompilerService
  504 11484     1   0 21Dec24 ??         0:00.02 /System/Library/Frameworks/Metal.framework/Versions/A/XPCServices/MTLCompilerService.xpc/Contents/MacOS/MTLCompilerService
  504 11711     1   0 21Dec24 ??         0:00.14 /System/Library/PrivateFrameworks/XprotectFramework.framework/Versions/A/XPCServices/XprotectService.xpc/Contents/MacOS/XprotectService
  504 11712     1   0 21Dec24 ??         0:00.08 /System/Library/Frameworks/Metal.framework/Versions/A/XPCServices/MTLCompilerService.xpc/Contents/MacOS/MTLCompilerService
  504 11713     1   0 21Dec24 ??         0:00.02 /System/Library/Frameworks/Metal.framework/Versions/A/XPCServices/MTLCompilerService.xpc/Contents/MacOS/MTLCompilerService
  504 12734     1   0 21Dec24 ??         0:15.63 /System/Library/Frameworks/Metal.framework/Versions/A/XPCServices/MTLCompilerService.xpc/Contents/MacOS/MTLCompilerService
  504 12735     1   0 21Dec24 ??         0:03.10 /System/Library/Frameworks/Translation.framework/translationd
  504 17933     1   0 21Dec24 ??         0:05.55 /System/Library/Frameworks/AppKit.framework/Versions/C/XPCServices/ThemeWidgetControlViewService.xpc/Contents/MacOS/ThemeWidgetControlViewService
  504 19845     1   0 21Dec24 ??         0:00.27 /System/Library/PrivateFrameworks/MessagesBlastDoorSupport.framework/Versions/A/XPCServices/MessagesBlastDoorService.xpc/Contents/MacOS/MessagesBlastDoorService
  504 19846     1   0 21Dec24 ??         0:03.71 /System/Library/PrivateFrameworks/DocumentUnderstanding.framework/Support/textunderstandingd
  504 19847     1   0 21Dec24 ??         0:00.02 /System/Library/Frameworks/AudioToolbox.framework/XPCServices/com.apple.audio.SandboxHelper.xpc/Contents/MacOS/com.apple.audio.SandboxHelper
  504 21075     1   0 21Dec24 ??         0:00.17 /usr/libexec/feedbackd
  504 21079     1   0 21Dec24 ??         0:00.02 /System/Library/Frameworks/AudioToolbox.framework/XPCServices/com.apple.audio.SandboxHelper.xpc/Contents/MacOS/com.apple.audio.SandboxHelper
  504 21094     1   0 21Dec24 ??         0:00.14 /System/Library/Frameworks/Metal.framework/Versions/A/XPCServices/MTLCompilerService.xpc/Contents/MacOS/MTLCompilerService
  504 21095     1   0 21Dec24 ??         0:00.04 /System/Library/Frameworks/Metal.framework/Versions/A/XPCServices/MTLCompilerService.xpc/Contents/MacOS/MTLCompilerService
  504 21102     1   0 21Dec24 ??         0:00.08 /System/iOSSupport/System/Library/PrivateFrameworks/IMTranscoding.framework/XPCServices/IMTranscoderAgent.xpc/Contents/MacOS/IMTranscoderAgent
  504 21103     1   0 21Dec24 ??         0:00.06 /System/Library/PrivateFrameworks/MessagesBlastDoorSupport.framework/Versions/A/XPCServices/MessagesBlastDoorService.xpc/Contents/MacOS/MessagesBlastDoorService
  504 21122     1   0 21Dec24 ??         0:00.16 /System/Library/PrivateFrameworks/CoreSuggestions.framework/Versions/A/Support/reversetemplated
  504 21546     1   0 21Dec24 ??         1:23.11 /System/Library/Frameworks/AppKit.framework/Versions/C/XPCServices/com.apple.appkit.xpc.openAndSavePanelService.xpc/Contents/MacOS/com.apple.appkit.xpc.openAndSavePanelService
  504 21547     1   0 21Dec24 ??         0:02.42 /System/Library/Frameworks/QuickLookUI.framework/Versions/A/XPCServices/QuickLookUIService.xpc/Contents/MacOS/QuickLookUIService
  504 21559     1   0 21Dec24 ??         0:00.03 /System/Library/PrivateFrameworks/CSExattrCrypto.framework/Versions/A/XPCServices/CSExattrCryptoService.xpc/Contents/MacOS/CSExattrCryptoService
  504 21714     1   0 21Dec24 ??         0:05.94 /System/Applications/Messages.app/Contents/PlugIns/Messages Assistant Extension.appex/Contents/MacOS/Messages Assistant Extension -AppleLanguages ("en-US", "zh-Hans-US", "zh-Hant-US")
  504 21729     1   0 21Dec24 ??         0:01.23 /System/Library/PrivateFrameworks/Stickers.framework/Support/stickersd
  504 21730     1   0 21Dec24 ??         0:00.02 /System/Library/PrivateFrameworks/CharacterPicker.framework/Versions/A/XPCServices/com.apple.CharacterPicker.FileService.xpc/Contents/MacOS/com.apple.CharacterPicker.FileService
  504 21846     1   0 21Dec24 ??         0:00.03 /System/Library/Frameworks/Metal.framework/Versions/A/XPCServices/MTLCompilerService.xpc/Contents/MacOS/MTLCompilerService
  504 21847     1   0 21Dec24 ??         0:00.03 /System/Library/Frameworks/Metal.framework/Versions/A/XPCServices/MTLCompilerService.xpc/Contents/MacOS/MTLCompilerService
  504 22974     1   0 Tue09PM ??         0:00.05 /System/Library/CoreServices/Setup Assistant.app/Contents/Resources/mbuseragent
  504 23080     1   0 21Dec24 ??         0:04.66 /System/Library/PrivateFrameworks/Noticeboard.framework/Versions/A/Resources/nbagent.app/Contents/MacOS/nbagent
  504 23523     1   0 Mon03PM ??         0:00.33 /System/Library/PrivateFrameworks/MessagesBlastDoorSupport.framework/Versions/A/XPCServices/MessagesBlastDoorService.xpc/Contents/MacOS/MessagesBlastDoorService
  504 23524     1   0 Mon03PM ??         0:00.05 /System/Library/Frameworks/AudioToolbox.framework/XPCServices/com.apple.audio.SandboxHelper.xpc/Contents/MacOS/com.apple.audio.SandboxHelper
  504 23906     1   0 Fri04PM ??         0:02.07 /System/Library/PrivateFrameworks/UIFoundation.framework/Versions/A/XPCServices/nsattributedstringagent.xpc/Contents/MacOS/nsattributedstringagent
  504 25729  5947   0 Fri04PM ??         0:00.34 /Applications/Adobe Acrobat DC/Adobe Acrobat.app/Contents/Frameworks/AcroCEF Helper (Renderer).app/Contents/MacOS/AcroCEF Helper (Renderer) --type=renderer --log-severity=disable --user-agent-product=AcrobatServices/24.5.20320 Chrome/105.0.0.0 --user-data-dir=/Users/huazhou/Library/Application Support/Adobe/AcroCef/DC/Acrobat/UserData --log-file=/Users/huazhou/Library/Logs/AcroCEF_debug.log --touch-events=enabled --lang=en-US --num-raster-threads=4 --enable-zero-copy --enable-gpu-memory-buffer-compositor-resources --enable-main-frame-before-activation --renderer-client-id=10 --launch-time-ticks=228774652952 --shared-files --field-trial-handle=1718379636,r,16886317359951895707,15443547768258620674,131072 --disable-features=BackForwardCache --seatbelt-client=29
  504 25732     1   0 Fri04PM ??         0:01.25 /System/Library/Frameworks/VideoToolbox.framework/Versions/A/XPCServices/VTEncoderXPCService.xpc/Contents/MacOS/VTEncoderXPCService
  504 26856     1   0  4:16PM ??         0:00.13 /System/Library/PrivateFrameworks/CoreParsec.framework/parsec-fbf
  504 27147     1   0  4:19PM ??         0:00.25 /System/Library/Frameworks/CryptoTokenKit.framework/ctkbind.app/Contents/MacOS/ctkbind
  504 27391     1   0  4:21PM ??         0:00.14 /System/Library/PrivateFrameworks/UniversalAccess.framework/Versions/A/Resources/universalAccessAuthWarn.app/Contents/MacOS/universalAccessAuthWarn launchd -s
  504 29855     1   0  5:14PM ??         0:01.38 /Applications/Adobe Acrobat DC/Adobe Acrobat.app/Contents/Frameworks/AdobeCrashReporter.framework/Versions/A/Adobe Crash Processor.app/Contents/MacOS/Adobe Crash Processor
  504 29935     1   0  5:18PM ??         0:00.22 /System/Library/PrivateFrameworks/IMTransferServices.framework/IMTransferAgent.app/Contents/MacOS/IMTransferAgent
  504 30160     1   0 21Dec24 ??         0:00.47 /usr/libexec/dprivacyd
  504 30204     1   0 21Dec24 ??         0:00.09 /Library/Apple/System/Library/CoreServices/XProtect.app/Contents/MacOS/XProtect
  504 30280     1   0  5:20PM ??         0:00.06 /System/Library/CoreServices/rcd.app/Contents/MacOS/rcd
  504 30685     1   0 21Dec24 ??         0:00.02 /System/Library/Frameworks/AudioToolbox.framework/XPCServices/com.apple.audio.SandboxHelper.xpc/Contents/MacOS/com.apple.audio.SandboxHelper
  504 30698     1   0 21Dec24 ??         1:31.20 /System/Library/Frameworks/VideoToolbox.framework/Versions/A/XPCServices/VTDecoderXPCService.xpc/Contents/MacOS/VTDecoderXPCService
  504 31403     1   0  5:26PM ??         0:11.74 /Applications/RStudio.app/Contents/MacOS/RStudio
  504 31409 31403   0  5:26PM ??         0:04.10 /Applications/RStudio.app/Contents/Frameworks/RStudio Helper (GPU).app/Contents/MacOS/RStudio Helper (GPU) --type=gpu-process --user-data-dir=/Users/huazhou/Library/Application Support/RStudio --gpu-preferences=WAAAAAAAAAAgAAAEAAAAAAAAAAAAAAAAAABgAAEAAAA4AAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAcAAAAAAABoBwAAAAAAAHgCAABOAAAAcAIAAAAAAAB4AgAAAAAAAIACAAAAAAAAiAIAAAAAAACQAgAAAAAAAJgCAAAAAAAAoAIAAAAAAACoAgAAAAAAALACAAAAAAAAuAIAAAAAAADAAgAAAAAAAMgCAAAAAAAA0AIAAAAAAADYAgAAAAAAAOACAAAAAAAA6AIAAAAAAADwAgAAAAAAAPgCAAAAAAAAAAMAAAAAAAAIAwAAAAAAABADAAAAAAAAGAMAAAAAAAAgAwAAAAAAACgDAAAAAAAAMAMAAAAAAAA4AwAAAAAAAEADAAAAAAAASAMAAAAAAABQAwAAAAAAAFgDAAAAAAAAYAMAAAAAAABoAwAAAAAAAHADAAAAAAAAeAMAAAAAAACAAwAAAAAAAIgDAAAAAAAAkAMAAAAAAACYAwAAAAAAAKADAAAAAAAAqAMAAAAAAACwAwAAAAAAALgDAAAAAAAAwAMAAAAAAADIAwAAAAAAANADAAAAAAAA2AMAAAAAAADgAwAAAAAAAOgDAAAAAAAA8AMAAAAAAAD4AwAAAAAAAAAEAAAAAAAACAQAAAAAAAAQBAAAAAAAABgEAAAAAAAAIAQAAAAAAAAoBAAAAAAAADAEAAAAAAAAOAQAAAAAAABABAAAAAAAAEgEAAAAAAAAUAQAAAAAAABYBAAAAAAAAGAEAAAAAAAAaAQAAAAAAABwBAAAAAAAAHgEAAAAAAAAgAQAAAAAAACIBAAAAAAAAJAEAAAAAAAAmAQAAAAAAACgBAAAAAAAAKgEAAAAAAAAsAQAAAAAAAC4BAAAAAAAAMAEAAAAAAAAyAQAAAAAAADQBAAAAAAAANgEAAAAAAAAEAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAEAAAAQAAAAAAAAAAAAAAACAAAAEAAAAAAAAAAAAAAAAwAAABAAAAAAAAAAAAAAAAYAAAAQAAAAAAAAAAAAAAAHAAAAEAAAAAAAAAAAAAAACAAAABAAAAAAAAAAAAAAAAkAAAAQAAAAAAAAAAAAAAALAAAAEAAAAAAAAAAAAAAADAAAABAAAAAAAAAAAAAAAA4AAAAQAAAAAAAAAAAAAAAPAAAAEAAAAAAAAAAAAAAAEAAAABAAAAAAAAAAAQAAAAAAAAAQAAAAAAAAAAEAAAABAAAAEAAAAAAAAAABAAAAAgAAABAAAAAAAAAAAQAAAAMAAAAQAAAAAAAAAAEAAAAGAAAAEAAAAAAAAAABAAAABwAAABAAAAAAAAAAAQAAAAgAAAAQAAAAAAAAAAEAAAAJAAAAEAAAAAAAAAABAAAACwAAABAAAAAAAAAAAQAAAAwAAAAQAAAAAAAAAAEAAAAOAAAAEAAAAAAAAAABAAAADwAAABAAAAAAAAAAAQAAABAAAAAQAAAAAAAAAAQAAAAAAAAAEAAAAAAAAAAEAAAAAQAAABAAAAAAAAAABAAAAAIAAAAQAAAAAAAAAAQAAAADAAAAEAAAAAAAAAAEAAAABgAAABAAAAAAAAAABAAAAAcAAAAQAAAAAAAAAAQAAAAIAAAAEAAAAAAAAAAEAAAACQAAABAAAAAAAAAABAAAAAsAAAAQAAAAAAAAAAQAAAAMAAAAEAAAAAAAAAAEAAAADgAAABAAAAAAAAAABAAAAA8AAAAQAAAAAAAAAAQAAAAQAAAAEAAAAAAAAAAIAAAAAAAAABAAAAAAAAAACAAAAAEAAAAQAAAAAAAAAAgAAAACAAAAEAAAAAAAAAAIAAAAAwAAABAAAAAAAAAACAAAAAYAAAAQAAAAAAAAAAgAAAAHAAAAEAAAAAAAAAAIAAAACAAAABAAAAAAAAAACAAAAAkAAAAQAAAAAAAAAAgAAAALAAAAEAAAAAAAAAAIAAAADAAAABAAAAAAAAAACAAAAA4AAAAQAAAAAAAAAAgAAAAPAAAAEAAAAAAAAAAIAAAAEAAAABAAAAAAAAAACQAAAAAAAAAQAAAAAAAAAAkAAAABAAAAEAAAAAAAAAAJAAAAAgAAABAAAAAAAAAACQAAAAMAAAAQAAAAAAAAAAkAAAAGAAAAEAAAAAAAAAAJAAAABwAAABAAAAAAAAAACQAAAAgAAAAQAAAAAAAAAAkAAAAJAAAAEAAAAAAAAAAJAAAACwAAABAAAAAAAAAACQAAAAwAAAAQAAAAAAAAAAkAAAAOAAAAEAAAAAAAAAAJAAAADwAAABAAAAAAAAAACQAAABAAAAAQAAAAAAAAAAsAAAAAAAAAEAAAAAAAAAALAAAAAQAAABAAAAAAAAAACwAAAAIAAAAQAAAAAAAAAAsAAAADAAAAEAAAAAAAAAALAAAABgAAABAAAAAAAAAACwAAAAcAAAAQAAAAAAAAAAsAAAAIAAAAEAAAAAAAAAALAAAACQAAABAAAAAAAAAACwAAAAsAAAAQAAAAAAAAAAsAAAAMAAAAEAAAAAAAAAALAAAADgAAABAAAAAAAAAACwAAAA8AAAAQAAAAAAAAAAsAAAAQAAAACAAAAAAAAAAIAAAAAAAAAA== --shared-files --field-trial-handle=1718379636,r,10136170328207555156,5053220614446933298,262144 --enable-features=ScreenCaptureKitPickerScreen,ScreenCaptureKitStreamPickerSonoma --disable-features=SpareRendererForSitePerProcess --variations-seed-version --seatbelt-client=31
  504 31410 31403   0  5:26PM ??         0:00.75 /Applications/RStudio.app/Contents/Frameworks/RStudio Helper.app/Contents/MacOS/RStudio Helper --type=utility --utility-sub-type=network.mojom.NetworkService --lang=en-US --service-sandbox-type=network --user-data-dir=/Users/huazhou/Library/Application Support/RStudio --shared-files --field-trial-handle=1718379636,r,10136170328207555156,5053220614446933298,262144 --enable-features=ScreenCaptureKitPickerScreen,ScreenCaptureKitStreamPickerSonoma --disable-features=SpareRendererForSitePerProcess --variations-seed-version --seatbelt-client=32
  504 31426 31403   0  5:26PM ??         0:38.21 /Applications/RStudio.app/Contents/Resources/app/bin/rsession-arm64 --config-file none --program-mode desktop --www-port 41217 --launcher-token 201fbf36 --show-help-home 1
  504 31437 31403   0  5:26PM ??         0:18.57 /Applications/RStudio.app/Contents/Frameworks/RStudio Helper (Renderer).app/Contents/MacOS/RStudio Helper (Renderer) --type=renderer --user-data-dir=/Users/huazhou/Library/Application Support/RStudio --app-path=/Applications/RStudio.app/Contents/Resources/app --enable-sandbox --lang=en-US --num-raster-threads=4 --enable-zero-copy --enable-gpu-memory-buffer-compositor-resources --enable-main-frame-before-activation --renderer-client-id=4 --time-ticks-at-unix-epoch=-1735186239400617 --launch-time-ticks=249355664497 --shared-files --field-trial-handle=1718379636,r,10136170328207555156,5053220614446933298,262144 --enable-features=ScreenCaptureKitPickerScreen,ScreenCaptureKitStreamPickerSonoma --disable-features=SpareRendererForSitePerProcess --variations-seed-version --api-keys=desktopInfo|desktop|desktopMenuCallback --seatbelt-client=60
  504 31453 31426   0  5:26PM ??         0:02.30 /Applications/RStudio.app/Contents/Resources/app/bin/node/bin/node /Users/huazhou/.cache/rstudio/copilot/dist/agent.js
  504 31463 31426   0  5:26PM ??         0:01.01 /Applications/RStudio.app/Contents/Resources/app/bin/node/bin/node /Users/huazhou/.cache/rstudio/copilot/dist/agent.js
  504 31682  5912   0  5:26PM ??         0:01.43 /Applications/Google Chrome.app/Contents/Frameworks/Google Chrome Framework.framework/Versions/131.0.6778.205/Helpers/Google Chrome Helper (Renderer).app/Contents/MacOS/Google Chrome Helper (Renderer) --type=renderer --string-annotations --extension-process --enable-dinosaur-easter-egg-alt-images --lang=en-US --num-raster-threads=4 --enable-zero-copy --enable-gpu-memory-buffer-compositor-resources --enable-main-frame-before-activation --renderer-client-id=6634 --time-ticks-at-unix-epoch=-1734801999190337 --launch-time-ticks=249379215341 --shared-files --field-trial-handle=1718379636,r,7761031812746268102,8910257349932112331,262144 --variations-seed-version=20241219-130728.147000 --seatbelt-client=202
  504 31683  5912   0  5:26PM ??         0:00.79 /Applications/Google Chrome.app/Contents/Frameworks/Google Chrome Framework.framework/Versions/131.0.6778.205/Helpers/Google Chrome Helper (Renderer).app/Contents/MacOS/Google Chrome Helper (Renderer) --type=renderer --string-annotations --extension-process --enable-dinosaur-easter-egg-alt-images --lang=en-US --num-raster-threads=4 --enable-zero-copy --enable-gpu-memory-buffer-compositor-resources --enable-main-frame-before-activation --renderer-client-id=6635 --time-ticks-at-unix-epoch=-1734801999190337 --launch-time-ticks=249379216219 --shared-files --field-trial-handle=1718379636,r,7761031812746268102,8910257349932112331,262144 --variations-seed-version=20241219-130728.147000 --seatbelt-client=210
  504 31684  5912   0  5:26PM ??         0:01.48 /Applications/Google Chrome.app/Contents/Frameworks/Google Chrome Framework.framework/Versions/131.0.6778.205/Helpers/Google Chrome Helper (Renderer).app/Contents/MacOS/Google Chrome Helper (Renderer) --type=renderer --string-annotations --extension-process --enable-dinosaur-easter-egg-alt-images --lang=en-US --num-raster-threads=4 --enable-zero-copy --enable-gpu-memory-buffer-compositor-resources --enable-main-frame-before-activation --renderer-client-id=6636 --time-ticks-at-unix-epoch=-1734801999190337 --launch-time-ticks=249379216981 --shared-files --field-trial-handle=1718379636,r,7761031812746268102,8910257349932112331,262144 --variations-seed-version=20241219-130728.147000 --seatbelt-client=222
  504 31685  5912   0  5:26PM ??         0:03.54 /Applications/Google Chrome.app/Contents/Frameworks/Google Chrome Framework.framework/Versions/131.0.6778.205/Helpers/Google Chrome Helper (Renderer).app/Contents/MacOS/Google Chrome Helper (Renderer) --type=renderer --string-annotations --extension-process --enable-dinosaur-easter-egg-alt-images --lang=en-US --num-raster-threads=4 --enable-zero-copy --enable-gpu-memory-buffer-compositor-resources --enable-main-frame-before-activation --renderer-client-id=6637 --time-ticks-at-unix-epoch=-1734801999190337 --launch-time-ticks=249379217941 --shared-files --field-trial-handle=1718379636,r,7761031812746268102,8910257349932112331,262144 --variations-seed-version=20241219-130728.147000 --seatbelt-client=234
  504 31687  5912   0  5:26PM ??         0:15.85 /Applications/Google Chrome.app/Contents/Frameworks/Google Chrome Framework.framework/Versions/131.0.6778.205/Helpers/Google Chrome Helper (Renderer).app/Contents/MacOS/Google Chrome Helper (Renderer) --type=renderer --string-annotations --enable-dinosaur-easter-egg-alt-images --lang=en-US --num-raster-threads=4 --enable-zero-copy --enable-gpu-memory-buffer-compositor-resources --enable-main-frame-before-activation --renderer-client-id=6639 --time-ticks-at-unix-epoch=-1734801999190337 --launch-time-ticks=249379252651 --shared-files --field-trial-handle=1718379636,r,7761031812746268102,8910257349932112331,262144 --variations-seed-version=20241219-130728.147000 --seatbelt-client=264
  504 31701  5912   0  5:26PM ??         0:01.48 /Applications/Google Chrome.app/Contents/Frameworks/Google Chrome Framework.framework/Versions/131.0.6778.205/Helpers/Google Chrome Helper (Renderer).app/Contents/MacOS/Google Chrome Helper (Renderer) --type=renderer --string-annotations --enable-dinosaur-easter-egg-alt-images --lang=en-US --num-raster-threads=4 --enable-zero-copy --enable-gpu-memory-buffer-compositor-resources --enable-main-frame-before-activation --renderer-client-id=6647 --time-ticks-at-unix-epoch=-1734801999190337 --launch-time-ticks=249379594634 --shared-files --field-trial-handle=1718379636,r,7761031812746268102,8910257349932112331,262144 --variations-seed-version=20241219-130728.147000 --seatbelt-client=201
  504 31702  5912   0  5:26PM ??         0:08.44 /Applications/Google Chrome.app/Contents/Frameworks/Google Chrome Framework.framework/Versions/131.0.6778.205/Helpers/Google Chrome Helper (Renderer).app/Contents/MacOS/Google Chrome Helper (Renderer) --type=renderer --string-annotations --enable-dinosaur-easter-egg-alt-images --lang=en-US --num-raster-threads=4 --enable-zero-copy --enable-gpu-memory-buffer-compositor-resources --enable-main-frame-before-activation --renderer-client-id=6648 --time-ticks-at-unix-epoch=-1734801999190337 --launch-time-ticks=249379614096 --shared-files --field-trial-handle=1718379636,r,7761031812746268102,8910257349932112331,262144 --variations-seed-version=20241219-130728.147000 --seatbelt-client=202
  504 31709  5912   0  5:27PM ??         0:22.16 /Applications/Google Chrome.app/Contents/Frameworks/Google Chrome Framework.framework/Versions/131.0.6778.205/Helpers/Google Chrome Helper (Renderer).app/Contents/MacOS/Google Chrome Helper (Renderer) --type=renderer --string-annotations --enable-dinosaur-easter-egg-alt-images --lang=en-US --num-raster-threads=4 --enable-zero-copy --enable-gpu-memory-buffer-compositor-resources --enable-main-frame-before-activation --renderer-client-id=6640 --time-ticks-at-unix-epoch=-1734801999190337 --launch-time-ticks=249382264920 --shared-files --field-trial-handle=1718379636,r,7761031812746268102,8910257349932112331,262144 --variations-seed-version=20241219-130728.147000 --seatbelt-client=165
  504 31710  5912   0  5:27PM ??         0:01.22 /Applications/Google Chrome.app/Contents/Frameworks/Google Chrome Framework.framework/Versions/131.0.6778.205/Helpers/Google Chrome Helper (Renderer).app/Contents/MacOS/Google Chrome Helper (Renderer) --type=renderer --string-annotations --enable-dinosaur-easter-egg-alt-images --lang=en-US --num-raster-threads=4 --enable-zero-copy --enable-gpu-memory-buffer-compositor-resources --enable-main-frame-before-activation --renderer-client-id=6650 --time-ticks-at-unix-epoch=-1734801999190337 --launch-time-ticks=249382650293 --shared-files --field-trial-handle=1718379636,r,7761031812746268102,8910257349932112331,262144 --variations-seed-version=20241219-130728.147000 --seatbelt-client=141
  504 31712  5912   0  5:27PM ??         0:00.47 /Applications/Google Chrome.app/Contents/Frameworks/Google Chrome Framework.framework/Versions/131.0.6778.205/Helpers/Google Chrome Helper (Renderer).app/Contents/MacOS/Google Chrome Helper (Renderer) --type=renderer --string-annotations --enable-dinosaur-easter-egg-alt-images --lang=en-US --num-raster-threads=4 --enable-zero-copy --enable-gpu-memory-buffer-compositor-resources --enable-main-frame-before-activation --renderer-client-id=6652 --time-ticks-at-unix-epoch=-1734801999190337 --launch-time-ticks=249383415552 --shared-files --field-trial-handle=1718379636,r,7761031812746268102,8910257349932112331,262144 --variations-seed-version=20241219-130728.147000 --seatbelt-client=166
  504 31720  5912   0  5:27PM ??         0:00.62 /Applications/Google Chrome.app/Contents/Frameworks/Google Chrome Framework.framework/Versions/131.0.6778.205/Helpers/Google Chrome Helper (Renderer).app/Contents/MacOS/Google Chrome Helper (Renderer) --type=renderer --string-annotations --enable-dinosaur-easter-egg-alt-images --lang=en-US --num-raster-threads=4 --enable-zero-copy --enable-gpu-memory-buffer-compositor-resources --enable-main-frame-before-activation --renderer-client-id=6654 --time-ticks-at-unix-epoch=-1734801999190337 --launch-time-ticks=249385479954 --shared-files --field-trial-handle=1718379636,r,7761031812746268102,8910257349932112331,262144 --variations-seed-version=20241219-130728.147000 --seatbelt-client=142
  504 31750  5912   0  5:27PM ??         0:02.71 /Applications/Google Chrome.app/Contents/Frameworks/Google Chrome Framework.framework/Versions/131.0.6778.205/Helpers/Google Chrome Helper (Renderer).app/Contents/MacOS/Google Chrome Helper (Renderer) --type=renderer --string-annotations --enable-dinosaur-easter-egg-alt-images --lang=en-US --num-raster-threads=4 --enable-zero-copy --enable-gpu-memory-buffer-compositor-resources --enable-main-frame-before-activation --renderer-client-id=6668 --time-ticks-at-unix-epoch=-1734801999190337 --launch-time-ticks=249394139170 --shared-files --field-trial-handle=1718379636,r,7761031812746268102,8910257349932112331,262144 --variations-seed-version=20241219-130728.147000 --seatbelt-client=210
  504 31873     1   0  5:28PM ??         0:00.17 /System/Library/Frameworks/Metal.framework/Versions/A/XPCServices/MTLCompilerService.xpc/Contents/MacOS/MTLCompilerService
  504 32366  5912   0  5:31PM ??         0:00.06 /Applications/Google Chrome.app/Contents/Frameworks/Google Chrome Framework.framework/Versions/131.0.6778.205/Helpers/Google Chrome Helper (Renderer).app/Contents/MacOS/Google Chrome Helper (Renderer) --type=renderer --string-annotations --enable-dinosaur-easter-egg-alt-images --lang=en-US --num-raster-threads=4 --enable-zero-copy --enable-gpu-memory-buffer-compositor-resources --enable-main-frame-before-activation --renderer-client-id=6712 --time-ticks-at-unix-epoch=-1734801999190337 --launch-time-ticks=249621730078 --shared-files --field-trial-handle=1718379636,r,7761031812746268102,8910257349932112331,262144 --variations-seed-version=20241219-130728.147000 --seatbelt-client=213
  504 32911     1   0  5:32PM ??         0:00.03 /System/Library/Frameworks/Metal.framework/Versions/A/XPCServices/MTLCompilerService.xpc/Contents/MacOS/MTLCompilerService
  504 32944     1   0  5:32PM ??         0:00.15 /System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/mdworker_shared -s mdworker -c MDSImporterWorker -m com.apple.mdworker.shared
  504 33129     1   0  5:32PM ??         0:01.20 /Applications/Utilities/Adobe Creative Cloud Experience/CCXProcess/CCXProcess.app/Contents/MacOS/Creative Cloud Content Manager.node /Applications/Utilities/Adobe Creative Cloud Experience/CCXProcess/CCXProcess.app/Contents/MacOS/../js/main.js
  504 33151     1   0  5:33PM ??         0:00.10 /usr/libexec/biomesyncd
  504 33187     1   0  5:33PM ??         0:00.08 /System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/mdworker_shared -s mdworker -c MDSImporterWorker -m com.apple.mdworker.shared
  504 33188     1   0  5:33PM ??         0:00.08 /System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/mdworker_shared -s mdworker -c MDSImporterWorker -m com.apple.mdworker.shared
  504 33189     1   0  5:33PM ??         0:00.08 /System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/mdworker_shared -s mdworker -c MDSImporterWorker -m com.apple.mdworker.shared
  504 33190     1   0  5:33PM ??         0:00.08 /System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/mdworker_shared -s mdworker -c MDSImporterWorker -m com.apple.mdworker.shared
  504 33191     1   0  5:33PM ??         0:00.07 /System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/mdworker_shared -s mdworker -c MDSImporterWorker -m com.apple.mdworker.shared
  504 33192     1   0  5:33PM ??         0:00.07 /System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/mdworker_shared -s mdworker -c MDSImporterWorker -m com.apple.mdworker.shared
  504 33193     1   0  5:33PM ??         0:00.08 /System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/mdworker_shared -s mdworker -c MDSImporterWorker -m com.apple.mdworker.shared
  504 33194     1   0  5:33PM ??         0:00.08 /System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/mdworker_shared -s mdworker -c MDSImporterWorker -m com.apple.mdworker.shared
  504 33195     1   0  5:33PM ??         0:00.07 /System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/mdworker_shared -s mdworker -c MDSImporterWorker -m com.apple.mdworker.shared
  504 33196     1   0  5:33PM ??         0:00.08 /System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/mdworker_shared -s mdworker -c MDSImporterWorker -m com.apple.mdworker.shared
  504 33197     1   0  5:33PM ??         0:00.07 /System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/mdworker_shared -s mdworker -c MDSImporterWorker -m com.apple.mdworker.shared
  504 33198     1   0  5:33PM ??         0:00.07 /System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/mdworker_shared -s mdworker -c MDSImporterWorker -m com.apple.mdworker.shared
  504 33199     1   0  5:33PM ??         0:00.08 /System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/mdworker_shared -s mdworker -c MDSImporterWorker -m com.apple.mdworker.shared
  504 33200     1   0  5:33PM ??         0:00.11 /System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/mdworker_shared -s mdworker -c MDSImporterWorker -m com.apple.mdworker.shared
  504 33234 31426   0  5:33PM ??         0:00.01 bash /Applications/quarto/bin/quarto preview linux.qmd --to html --no-watch-inputs --no-browse
  504 33243 33234   0  5:33PM ??         0:00.50 /Applications/quarto/bin/tools/aarch64/deno run --unstable-ffi --unstable-kv --no-config --no-lock --allow-all --no-check --v8-flags=--enable-experimental-regexp-engine,--max-old-space-size=8192,--max-heap-size=8192 --importmap=/Applications/quarto/bin/vendor/import_map.json /Applications/quarto/bin/quarto.js preview linux.qmd --to html --no-watch-inputs --no-browse
  504 33244 33243   0  5:33PM ??         0:00.49 /Library/Frameworks/R.framework/Resources/bin/exec/R --no-echo --no-restore --file=/Applications/quarto/share/rmd/rmd.R
  504 33387 33244   0  5:33PM ??         0:00.00 sh -c 'bash'  -c 'ps -fu $USER' 2>&1
    0 33388 33387   0  5:33PM ??         0:00.00 ps -fu huazhou
  504 40249     1   0  9:13PM ??         0:00.02 /System/Library/PrivateFrameworks/CoreEmbeddedSpeechRecognition.framework/Versions/A/XPCServices/com.apple.siri.embeddedspeech.xpc/Contents/MacOS/com.apple.siri.embeddedspeech
  504 40270     1   0 Tue12PM ??         0:00.06 /System/Library/Frameworks/VideoToolbox.framework/Versions/A/XPCServices/VTDecoderXPCService.xpc/Contents/MacOS/VTDecoderXPCService
  504 40331     1   0 Tue12PM ??         0:01.34 /System/Library/CoreServices/ControlCenter.app/Contents/XPCServices/ControlCenterHelper.xpc/Contents/MacOS/ControlCenterHelper
  504 41375     1   0 Tue12PM ??         0:00.26 /System/Library/PrivateFrameworks/IntelligenceFlowRuntime.framework/Versions/A/intelligenceflowd
  504 41377     1   0 Tue12PM ??         0:00.07 /System/Library/Frameworks/Metal.framework/Versions/A/XPCServices/MTLCompilerService.xpc/Contents/MacOS/MTLCompilerService
  504 41380     1   0 Tue12PM ??         0:00.62 /System/Library/PrivateFrameworks/IntelligenceFlowContextRuntime.framework/Versions/A/intelligencecontextd
  504 41381     1   0 Tue12PM ??         0:00.02 /System/Library/Frameworks/Metal.framework/Versions/A/XPCServices/MTLCompilerService.xpc/Contents/MacOS/MTLCompilerService
  504 41382     1   0 Tue12PM ??         0:03.02 /System/Library/PrivateFrameworks/WorkflowKit.framework/XPCServices/ShortcutsViewService.xpc/Contents/MacOS/ShortcutsViewService
  504 41388     1   0 Tue12PM ??         0:00.25 /System/Library/ExtensionKit/Extensions/SearchToolExtension.appex/Contents/MacOS/SearchToolExtension
  504 41390     1   0 Tue12PM ??         0:00.05 /System/Library/PrivateFrameworks/StocksKit.framework/XPCServices/StocksKitService.xpc/Contents/MacOS/StocksKitService
  504 42709     1   0 Sun04PM ??         0:00.08 /usr/bin/ssh-agent -l
  504 43229     1   0 Sun04PM ??         0:00.02 /System/Library/Frameworks/NetFS.framework/Versions/A/XPCServices/PlugInLibraryService.xpc/Contents/MacOS/PlugInLibraryService
  504 43397     1   0 Sun04PM ??         0:00.22 /System/Library/Frameworks/VideoToolbox.framework/Versions/A/XPCServices/VTDecoderXPCService.xpc/Contents/MacOS/VTDecoderXPCService
  504 43486     1   0 Sun04PM ??         0:00.01 /System/Library/PrivateFrameworks/KerberosHelper/Helpers/DiskUnmountWatcher
  504 45545     1   0 Wed02PM ??         0:01.05 /Applications/Utilities/Adobe Sync/CoreSync/Core Sync.app/Contents/PlugIns/ACCFinderSync.appex/Contents/MacOS/ACCFinderSync -AppleLanguages ("en", "en-US", "zh-Hans-US", "zh-Hant-US")
  504 45549     1   0 Sun04AM ??         0:01.47 /System/Library/PrivateFrameworks/DeviceCheckInternal.framework/devicecheckd
  504 45726     1   0 Tue12PM ??         0:00.91 /System/Applications/Stocks.app/Contents/PlugIns/StocksWidget.appex/Contents/MacOS/StocksWidget
  504 50362     1   0 Sun05AM ??         0:00.10 /System/Library/PrivateFrameworks/BusinessChatService.framework/businessservicesd
  504 50368     1   0 Sun05AM ??         0:00.09 /System/Library/PrivateFrameworks/MessagesBlastDoorSupport.framework/Versions/A/XPCServices/MessagesBlastDoorService.xpc/Contents/MacOS/MessagesBlastDoorService
  504 51527     1   0 21Dec24 ??         0:00.21 /System/Library/PrivateFrameworks/MessagesBlastDoorSupport.framework/Versions/A/XPCServices/MessagesBlastDoorService.xpc/Contents/MacOS/MessagesBlastDoorService
  504 52062     1   0 21Dec24 ??         1:57.99 /System/Library/PrivateFrameworks/FileProviderDaemon.framework/XPCServices/FPCKService.xpc/Contents/MacOS/FPCKService
  504 53343     1   0 21Dec24 ??         0:00.36 /System/Applications/Mail.app/Contents/PlugIns/com.apple.mail.SpotlightIndexExtension.appex/Contents/MacOS/com.apple.mail.SpotlightIndexExtension -AppleLanguages ("en-US", "zh-Hans-US", "zh-Hant-US")
  504 54120     1   0 21Dec24 ??         0:00.87 /System/Library/PrivateFrameworks/GeoAnalytics.framework/geoanalyticsd
  504 55454     1   0 Sun11PM ??         0:02.63 /System/Library/PrivateFrameworks/RemoteViewServices.framework/XPCServices/com.apple.security.pboxd.xpc/Contents/MacOS/com.apple.security.pboxd
  504 55556     1   0 21Dec24 ??         0:03.54 /System/Library/PrivateFrameworks/PrivateCloudCompute.framework/privatecloudcomputed.app/Contents/MacOS/privatecloudcomputed
  504 55559     1   0 21Dec24 ??         0:00.48 /System/Library/PrivateFrameworks/CloudTelemetry.framework/Versions/A/XPCServices/CloudTelemetryService.xpc/Contents/MacOS/CloudTelemetryService
  504 55560     1   0 21Dec24 ??         0:00.02 /System/Library/Frameworks/NetFS.framework/Versions/A/XPCServices/PlugInLibraryService.xpc/Contents/MacOS/PlugInLibraryService
  504 55605     1   0 21Dec24 ??         0:00.05 /System/Library/Frameworks/AudioToolbox.framework/XPCServices/com.apple.audio.SandboxHelper.xpc/Contents/MacOS/com.apple.audio.SandboxHelper
  504 55828     1   0 21Dec24 ??         3:37.75 /System/Library/Frameworks/VideoToolbox.framework/Versions/A/XPCServices/VTDecoderXPCService.xpc/Contents/MacOS/VTDecoderXPCService
  504 55829     1   0 21Dec24 ??         0:00.10 /System/Library/Frameworks/AudioToolbox.framework/XPCServices/com.apple.audio.SandboxHelper.xpc/Contents/MacOS/com.apple.audio.SandboxHelper
  504 56292     1   0 21Dec24 ??        70:03.64 /System/Library/PrivateFrameworks/MediaAnalysisAccess.framework/Versions/A/XPCServices/mediaanalysisd-access.xpc/Contents/MacOS/mediaanalysisd-access
  504 56374     1   0 21Dec24 ??         0:00.06 /System/Library/Frameworks/Metal.framework/Versions/A/XPCServices/MTLCompilerService.xpc/Contents/MacOS/MTLCompilerService
  504 58989     1   0 Thu12AM ??         0:00.65 /System/Library/CoreServices/destinationd
  504 58990     1   0 Thu12AM ??         0:00.55 /System/Library/CoreServices/mapspushd
  504 60682     1   0 21Dec24 ??         3:08.44 /System/Library/Frameworks/VideoToolbox.framework/Versions/A/XPCServices/VTEncoderXPCService.xpc/Contents/MacOS/VTEncoderXPCService
  504 65930     1   0 Thu12AM ??         0:09.42 /System/Library/Frameworks/QuickLookUI.framework/Versions/A/XPCServices/QuickLookUIService.xpc/Contents/MacOS/QuickLookUIService
  504 65937     1   0 Thu12AM ??         0:00.33 /System/Library/Frameworks/Metal.framework/Versions/A/XPCServices/MTLCompilerService.xpc/Contents/MacOS/MTLCompilerService
  504 65938     1   0 Thu12AM ??         0:00.06 /System/Library/Frameworks/Metal.framework/Versions/A/XPCServices/MTLCompilerService.xpc/Contents/MacOS/MTLCompilerService
  504 67448     1   0  9:05AM ??         0:00.81 /usr/libexec/remindd
  504 69137     1   0 10:47AM ??         0:00.03 /System/Library/Frameworks/Metal.framework/Versions/A/XPCServices/MTLCompilerService.xpc/Contents/MacOS/MTLCompilerService
  504 69138     1   0 10:47AM ??         0:00.08 /System/Library/Frameworks/Metal.framework/Versions/A/XPCServices/MTLCompilerService.xpc/Contents/MacOS/MTLCompilerService
  504 69139     1   0 10:47AM ??         0:00.03 /System/Library/Frameworks/Metal.framework/Versions/A/XPCServices/MTLCompilerService.xpc/Contents/MacOS/MTLCompilerService
  504 75671     1   0 21Dec24 ??         0:00.02 /System/Library/Frameworks/Metal.framework/Versions/A/XPCServices/MTLCompilerService.xpc/Contents/MacOS/MTLCompilerService
  504 75672     1   0 21Dec24 ??         0:00.02 /System/Library/Frameworks/Metal.framework/Versions/A/XPCServices/MTLCompilerService.xpc/Contents/MacOS/MTLCompilerService
  504 77947     1   0 Thu09AM ??         0:52.15 /System/Applications/News.app/Contents/PlugIns/NewsToday2.appex/Contents/MacOS/NewsToday2
  504 78282     1   0 Sun09AM ??         0:00.19 /usr/libexec/inputanalyticsd
  504 78399     1   0 Sat05PM ??         0:01.23 /System/Library/PrivateFrameworks/IMTranscoding.framework/XPCServices/IMTranscoderAgent.xpc/Contents/MacOS/IMTranscoderAgent
  504 78401     1   0 Sat05PM ??         0:00.41 /System/Library/PrivateFrameworks/MessagesBlastDoorSupport.framework/Versions/A/XPCServices/MessagesBlastDoorService.xpc/Contents/MacOS/MessagesBlastDoorService
  504 78626     1   0 Sat05PM ??         0:05.60 /System/Library/CoreServices/PowerChime.app/Contents/MacOS/PowerChime
  504 78655     1   0 Sat05PM ??         0:04.28 /System/Library/CoreServices/UserNotificationCenter.app/Contents/MacOS/UserNotificationCenter
  504 80216     1   0 Thu10AM ??         1:15.85 /Applications/Julia-1.9.app/Contents/Resources/julia/bin/julia -i --color=yes --project=@. /Users/huazhou/.julia/packages/IJulia/Vo51o/src/kernel.jl /Users/huazhou/Library/Jupyter/runtime/kernel-67580526-3e8e-4ce2-ac17-df742db94043.json
  504 80306     1   0 Sat06PM ??         0:00.31 /System/Library/Frameworks/GroupActivities.framework/Versions/A/XPCServices/GroupSessionService.xpc/Contents/MacOS/GroupSessionService
  504 80318     1   0 Sat06PM ??         0:00.18 /System/Library/Frameworks/Metal.framework/Versions/A/XPCServices/MTLCompilerService.xpc/Contents/MacOS/MTLCompilerService
  504 80319     1   0 Sat06PM ??         0:00.03 /System/Library/Frameworks/Metal.framework/Versions/A/XPCServices/MTLCompilerService.xpc/Contents/MacOS/MTLCompilerService
  504 80353     1   0 Sat06PM ??         0:00.02 /System/Library/Frameworks/Intents.framework/XPCServices/intents_helper.xpc/Contents/MacOS/intents_helper
  504 80383     1   0 Sun10AM ??        54:09.31 /Applications/DisplayLink Manager.app/Contents/MacOS/DisplayLinkUserAgent
  504 80385     1   0 Sun10AM ??         0:00.02 /usr/libexec/loginitemregisterd
  504 80387     1   0 Sun10AM ??         0:00.04 /System/Library/Frameworks/Metal.framework/Versions/A/XPCServices/MTLCompilerService.xpc/Contents/MacOS/MTLCompilerService
  504 80753     1   0 11:29AM ??         0:00.09 /System/Library/ExtensionKit/Extensions/PackageThumbnailExtension.appex/Contents/MacOS/PackageThumbnailExtension
  504 80761     1   0 11:29AM ??         0:00.03 /System/Library/Frameworks/Metal.framework/Versions/A/XPCServices/MTLCompilerService.xpc/Contents/MacOS/MTLCompilerService
  504 80762     1   0 11:29AM ??         0:00.03 /System/Library/Frameworks/Metal.framework/Versions/A/XPCServices/MTLCompilerService.xpc/Contents/MacOS/MTLCompilerService
  504 80966     1   0 Sun10AM ??         0:01.81 /System/Library/Frameworks/ApplicationServices.framework/Frameworks/PrintCore.framework/Versions/A/printtool
  504 80990     1   0 Sun10AM ??         0:00.01 /System/Library/Frameworks/ColorSync.framework/Versions/A/XPCServices/com.apple.ColorSyncXPCAgent.xpc/Contents/MacOS/com.apple.ColorSyncXPCAgent
  504 82671     1   0 Sun10AM ??         0:03.14 /System/Library/PrivateFrameworks/PaperKit.framework/Contents/LinkedNotesUIService.app/Contents/MacOS/LinkedNotesUIService
  504 83264     1   0 Mon09AM ??         0:00.02 /System/Library/Frameworks/Metal.framework/Versions/A/XPCServices/MTLCompilerService.xpc/Contents/MacOS/MTLCompilerService
  504 83265     1   0 Mon09AM ??         0:00.02 /System/Library/Frameworks/Metal.framework/Versions/A/XPCServices/MTLCompilerService.xpc/Contents/MacOS/MTLCompilerService
  504 84225     1   0 Tue05PM ??         0:00.12 /System/Library/ExtensionKit/Extensions/AudiovisualThumbnailExtension.appex/Contents/MacOS/AudiovisualThumbnailExtension
  504 84226     1   0 Tue05PM ??         0:00.04 /System/Library/Frameworks/AudioToolbox.framework/XPCServices/com.apple.audio.SandboxHelper.xpc/Contents/MacOS/com.apple.audio.SandboxHelper
  504 84227     1   0 Tue05PM ??         0:00.09 /System/Library/Frameworks/VideoToolbox.framework/Versions/A/XPCServices/VTDecoderXPCService.xpc/Contents/MacOS/VTDecoderXPCService
  504 84888     1   0 Thu09PM ??         0:02.39 /System/Library/PrivateFrameworks/IntelligencePlatformCore.framework/Versions/A/knowledgeconstructiond
  504 85306     1   0 Sat06PM ??         0:02.30 /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Resources/storeuid.app/Contents/MacOS/storeuid
  504 85314     1   0 Sat06PM ??         0:09.87 /System/Library/PrivateFrameworks/GameCenterFoundation.framework/Versions/A/gamed
  504 85929     1   0 Thu09PM ??         0:05.89 /System/Library/PrivateFrameworks/DataDetectors.framework/Versions/A/XPCServices/DataDetectorsViewService.xpc/Contents/MacOS/DataDetectorsViewService
  504 85930     1   0 Thu09PM ??         0:02.29 /System/iOSSupport/System/Library/PrivateFrameworks/AvatarUI.framework/PlugIns/AvatarPickerMemojiPicker.appex/Contents/MacOS/AvatarPickerMemojiPicker -AppleLanguages ("en", "en-US", "zh-Hans-US", "zh-Hant-US")
  504 86564     1   0 Thu09PM ??         0:00.02 /System/Library/Frameworks/Metal.framework/Versions/A/XPCServices/MTLCompilerService.xpc/Contents/MacOS/MTLCompilerService
  504 87343     1   0 Thu09PM ??         0:00.07 /System/Library/Frameworks/VideoToolbox.framework/Versions/A/XPCServices/VTDecoderXPCService.xpc/Contents/MacOS/VTDecoderXPCService
  504 89513     1   0 Sat08PM ??         0:00.31 /System/Library/CoreServices/EscrowSecurityAlert.app/Contents/MacOS/EscrowSecurityAlert
  504 92452     1   0 Fri12PM ??         0:02.77 /System/Library/CoreServices/Family.app/Contents/MacOS/Family
  504 92453     1   0 Fri12PM ??         0:00.06 /System/Library/Frameworks/Metal.framework/Versions/A/XPCServices/MTLCompilerService.xpc/Contents/MacOS/MTLCompilerService
  504 92454     1   0 Fri12PM ??         0:00.05 /System/Library/Frameworks/Metal.framework/Versions/A/XPCServices/MTLCompilerService.xpc/Contents/MacOS/MTLCompilerService
  504 92934     1   0 Thu10AM ??        18:04.37 /Users/huazhou/.julia/juliaup/julia-1.11.2+0.aarch64.apple.darwin14/bin/julia -i --color=yes --project=@. /Users/huazhou/.julia/packages/IJulia/dR0lE/src/kernel.jl /Users/huazhou/Library/Jupyter/runtime/kernel-70c47bc5-bc41-4a50-88ba-d8f50171f16f.json
  504 98168     1   0 Mon10AM ??         0:00.04 /System/Library/Frameworks/Metal.framework/Versions/A/XPCServices/MTLCompilerService.xpc/Contents/MacOS/MTLCompilerService
    0 32531  5921   0  5:31PM ttys000    0:00.02 login -pfl huazhou /bin/bash -c exec -la zsh /bin/zsh
  504 32532 32531   0  5:31PM ttys000    0:00.27 -zsh

8.3 Kill processes

  • Kill process with PID=1001:
```{bash}
#| eval: false
kill 1001
```
  • Kill all R processes.
```{bash}
#| eval: false
killall -r R
```

8.4 top

  • top prints realtime process information (very useful).
```{bash}
#| eval: false
top
```

  • Exit the top program by pressing the q key.

9 Secure shell (SSH)

9.1 SSH

SSH (secure shell) is the dominant cryptographic network protocol for secure network connection via an insecure network.

  • On Linux or Mac Terminal, access a Linux machine by
```{bash}
#| eval: false
ssh [USERNAME]@[IP_ADDRESS]
```

Replace above [USERNAME] by your account user name on the Linux machine and [IP_ADDRESS] by the machine’s ip address. For example, to connect to the Hoffman2 cluster at UCLA

```{bash}
#| eval: false
ssh huazhou@hoffman2.idre.ucla.edu
```
  • For Windows users, there are at least three ways: (1) (recommended) Git Bash which is included in Git for Windows, (2) (not recommended) PuTTY program (free), or (3) (highly recommended) use WSL for Windows to install a full fledged Linux system within Windows.

9.2 Advantages of keys over password

  • Key authentication is more secure than password. Most passwords are weak.

  • Script or a program may need to systematically SSH into other machines.

  • Log into multiple machines using the same key.

  • Seamless use of many services: Git/GitHub, AWS or Google cloud service, parallel computing on multiple hosts, Travis CI (continuous integration) etc.

  • Many servers only allow key authentication and do not accept password authentication.

9.3 Key authentication

  • Public key. Put on the machine(s) you want to log in.

  • Private key. Put on your own computer. Consider this as the actual key in your pocket; never give private keys to others.

  • Messages from server to your computer is encrypted with your public key. It can only be decrypted using your private key.

  • Messages from your computer to server is signed with your private key (digital signatures) and can be verified by anyone who has your public key (authentication).

9.4 Steps to generate keys (on ternminal)

  • On Linux, Mac, Windows Git Bash, or Windows WSL, to generate a key pair:
ssh-keygen -t rsa -f ~/.ssh/[KEY_FILENAME] -C [USERNAME]
    • [KEY_FILENAME] is the name that you want to use for your SSH key files. For example, a filename of id_rsa generates a private key file named id_rsa and a public key file named id_rsa.pub.

    • [USERNAME] is the user for whom you will apply this SSH key.

    • Use a (optional) paraphrase different from password.

  • Set correct permissions on the .ssh folder and key files.
    • The permission for the ~/.ssh folder should be 700 (drwx------).
    • The permission of the private key ~/.ssh/id_rsa should be 600 (-rw-------).
    • The permission of the public key ~/.ssh/id_rsa.pub should be 644 (-rw-r--r--).
chmod 700 ~/.ssh
chmod 600 ~/.ssh/[KEY_FILENAME]
chmod 644 ~/.ssh/[KEY_FILENAME].pub
Note Windows is different, it doesn't allow change of permissions.
  • Append the public key to the ~/.ssh/authorized_keys file of any Linux machine we want to SSH to, e.g.,
ssh-copy-id -i ~/.ssh/[KEY_FILENAME] [USERNAME]@[IP_ADDRESS]

Make sure the permission of the authorized_keys file is 600 (-rw-------).

  • Test your new key.
ssh -i ~/.ssh/[KEY_FILENAME] [USERNAME]@[IP_ADDRESS]
  • From now on, you don’t need password each time you connect from your machine to the teaching server.

  • If you set paraphrase when generating keys, you’ll be prompted for the paraphrase each time the private key is used. Avoid repeatedly entering the paraphrase by using ssh-agent on Linux/Mac or Pagent on Windows.

  • Same key pair can be used between any two machines. We don’t need to regenerate keys for each new connection.

9.5 Transfer files between machines

  • scp securely transfers files between machines using SSH.
## copy file from local to remote
scp [LOCALFILE] [USERNAME]@[IP_ADDRESS]:/[PATH_TO_FOLDER]
## copy file from remote to local
scp [USERNAME]@[IP_ADDRESS]:/[PATH_TO_FILE] [PATH_TO_LOCAL_FOLDER]
  • sftp is FTP via SSH.

  • Globus is GUI program for securely transferring files between machines. To use Globus you will have to go to https://www.globus.org/ and login through UCLA by selecting your existing organizational login as UCLA. Then you will need to download their Globus Connect Personal software, then set your laptop as an endpoint. Very detailed instructions can be found at https://www.hoffman2.idre.ucla.edu/file-transfer/globus/.

  • GUIs for Windows (WinSCP) or Mac (Cyberduck).

  • You can even use RStudio to upload files to a remote machine with RStudio Server installed.

  • (Preferred way) Use a version control system (git, svn, cvs, …) to sync project files between different machines and systems.

9.6 Line breaks in text files

  • Windows uses a pair of CR and LF for line breaks.

  • Linux/Unix uses an LF character only.

  • MacOS X also uses a single LF character. But old Mac OS used a single CR character for line breaks.

  • If transferred in binary mode (bit by bit) between OSs, a text file could look a mess.

  • Most transfer programs automatically switch to text mode when transferring text files and perform conversion of line breaks between different OSs; but I used to run into problems using WinSCP. Sometimes you have to tell WinSCP explicitly a text file is being transferred.

10 Run R in Linux

10.1 Interactive mode

  • Start R in the interactive mode by typing R in shell.

  • Then run R script by

source("script.R")

10.2 Batch mode

  • Demo script meanEst.R implements an (terrible) estimator of mean \[ {\widehat \mu}_n = \frac{\sum_{i=1}^n x_i 1_{i \text{ is prime}}}{\sum_{i=1}^n 1_{i \text{ is prime}}}. \]
cat meanEst.R
## check if a given integer is prime
isPrime = function(n) {
  if (n <= 3) {
    return (TRUE)
  }
  if (any((n %% 2:floor(sqrt(n))) == 0)) {
    return (FALSE)
  }
  return (TRUE)
}

## estimate mean only using observation with prime indices
estMeanPrimes = function (x) {
  n = length(x)
  ind = sapply(1:n, isPrime)
  return (mean(x[ind]))
}

print(estMeanPrimes(rnorm(100000)))
  • To run your R code non-interactively aka in batch mode, we have at least two options:
#! eval: false
# default output to meanEst.Rout
R CMD BATCH meanEst.R

or

# output to stdout
Rscript meanEst.R
  • Typically we automate batch calls using a scripting language, e.g., Python, Perl, and shell script.

10.3 Pass arguments to R scripts

  • Specify arguments in R CMD BATCH:
R CMD BATCH '--args mu=1 sig=2 kap=3' script.R
  • Specify arguments in Rscript:
Rscript script.R mu=1 sig=2 kap=3
  • Parse command line arguments using magic formula
for (arg in commandArgs(TRUE)) {
  eval(parse(text=arg))
}

in R script. After calling the above code, all command line arguments will be available in the global namespace.

  • To understand the magic formula commandArgs, run R by:
R '--args mu=1 sig=2 kap=3'

and then issue commands in R

commandArgs()
commandArgs(TRUE)
  • Understand the magic formula parse and eval:
rm(list = ls())
print(x)
parse(text = "x=3")
eval(parse(text = "x=3"))
print(x)
  • runSim.R has components: (1) command argument parser, (2) method implementation, (3) data generator with unspecified parameter n, and (4) estimation based on generated data.
## parsing command arguments
for (arg in commandArgs(TRUE)) {
  eval(parse(text=arg))
}

## check if a given integer is prime
isPrime = function(n) {
  if (n <= 3) {
    return (TRUE)
  }
  if (any((n %% 2:floor(sqrt(n))) == 0)) {
    return (FALSE)
  }
  return (TRUE)
}

## estimate mean only using observation with prime indices
estMeanPrimes = function (x) {
  n = length(x)
  ind = sapply(1:n, isPrime)
  return (mean(x[ind]))
}

# simulate data
x = rnorm(n)

# estimate mean
estMeanPrimes(x)
  • Call runSim.R with sample size n=100:
R CMD BATCH '--args n=100' runSim.R

or

Rscript runSim.R n=100
[1] 0.02255229

10.4 Run long jobs

  • Many statistical computing tasks take long: simulation, MCMC, etc. If we exit Linux when the job is unfinished, the job is killed.

  • nohup command in Linux runs program(s) immune to hangups and writes output to nohup.out by default. Logging out will not kill the process; we can log in later to check status and results.

  • nohup is POSIX standard thus available on Linux and MacOS.

  • Run runSim.R in background and writes output to nohup.out:

nohup Rscript runSim.R n=100 &
[1] -0.03763614

The & at the end of the command instructs Linux to run this command in background, so we gain control of the terminal immediately.

10.5 screen

  • screen is another popular utility, but not installed by default.

  • Typical workflow using screen.

    1. Access remote server using ssh.

    2. Start jobs in batch mode.

    3. Detach jobs.

    4. Exit from server, wait for jobs to finish.

    5. Access remote server using ssh.

    6. Re-attach jobs, check on progress, get results, etc.

10.6 Use R to call R

R in conjunction with nohup (or screen) can be used to orchestrate a large simulation study.

  • It can be more elegant, transparent, and robust to parallelize jobs corresponding to different scenarios (e.g., different generative models) outside of the code used to do statistical computation.

  • We consider a simulation study in R but the same approach could be used with code written in Julia, Matlab, Python, etc.

  • Python in many ways makes a better glue.

  • Suppose we have

    • runSim.R which runs a simulation based on command line argument n.
    • A large collection of n values that we want to use in our simulation study.
    • Access to a server with 128 cores.
      How to parallelize the job?
  • Option 1: manually call runSim.R for each setting.

  • Option 2 (smarter): automate calls using R and nohup.

  • Let’s demonstrate using the script autoSim.R

cat autoSim.R
# autoSim.R

nVals <- seq(100, 1000, by=100)
for (n in nVals) {
  oFile <- paste("n", n, ".txt", sep="")
  sysCall <- paste("nohup Rscript runSim.R n=", n, " > ", oFile, sep="")
  system(sysCall, wait = FALSE)
  print(paste("sysCall=", sysCall, sep=""))
}

Note when we call bash command using the system function in R, we set optional argument wait=FALSE so that jobs can be run parallel.

Rscript autoSim.R
[1] "sysCall=nohup Rscript runSim.R n=100 > n100.txt"
[1] "sysCall=nohup Rscript runSim.R n=200 > n200.txt"
[1] "sysCall=nohup Rscript runSim.R n=300 > n300.txt"
[1] "sysCall=nohup Rscript runSim.R n=400 > n400.txt"
[1] "sysCall=nohup Rscript runSim.R n=500 > n500.txt"
[1] "sysCall=nohup Rscript runSim.R n=600 > n600.txt"
[1] "sysCall=nohup Rscript runSim.R n=700 > n700.txt"
[1] "sysCall=nohup Rscript runSim.R n=800 > n800.txt"
[1] "sysCall=nohup Rscript runSim.R n=900 > n900.txt"
[1] "sysCall=nohup Rscript runSim.R n=1000 > n1000.txt"
  • Now we just need to write a script to collect results from the output files.

  • Later we will learn how to coordinate large scale computation on UCLA Hoffman2 cluster, using Linux and R scripting.

11 Some other Linux commands

  • Log out Linux: exit or logout or ctrl+d.

  • Clear screen: clear.